C语言实验——转换字母(顺序结构)

Problem Description 从键盘上输入一个小写字母,而后将小写字母装换成大写字母输出! Input 从键盘上输入一个小写字母。 Output 小写字母装换成大写字母输出。 Example Input a Example Output Aspa #include<stdio.h> int main() { char x,y; scanf("%c",&x); y=x-32; printf
相关文章
相关标签/搜索