1457: 英文大小写字母转换

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:15 Solved:12

Description

编程从键盘输入一个小写英文字母,将其转换为大写英文字母后,将转换后的大写英文字母及其十进制的ASCII码值显示到屏幕上。字符输入要求使用getchar()函数。

以下为程序的运行示例:

Press a key and then press Enter:

h↙

H,72

Input

getchar()

Output

输入提示信息:"Press a key and then press Enter:\n"

输出格式:"%c,%d\n"

Sample Input Copy

a

Sample Output Copy

Press a key and then press Enter:
A,65