用C语言编写一个程序,从键盘上输入一个小写字母,将其本身及对应的大写字母输出.

日期:2018-03-30 20:04:44 人气:3

用C语言编写一个程序,从键盘上输入一个小写字母,将其本身及对应的大写字母输出.

程序如下: #include int main() { char ch; scanf("%c",&ch); printf("%c",ch-'a'+'A'); return(0); } 示例一: #include int main() { char ch; scanf("%c",&ch); printf("Letter %c converted into a letter %c!",ch,ch-
    A+
热门评论