From 073e71187b6840ecc29a51b890b9113f4baf2cbe Mon Sep 17 00:00:00 2001 From: smallkun Date: Mon, 17 Feb 2025 19:19:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'2207/C=E8=AF=AD=E8=A8=80?= =?UTF-8?q?=E7=B2=BE=E9=80=9A120=E9=A2=98.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2207/C语言精通120题.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/2207/C语言精通120题.md b/2207/C语言精通120题.md index 147ed10..edec402 100644 --- a/2207/C语言精通120题.md +++ b/2207/C语言精通120题.md @@ -1,5 +1,24 @@ 1.输入一小写字母,分别以字符形式与数值形式输出与该小写字母相应的大写字母 +```c +#include +#include +/* +1.输入一小写字母,分别以字符形式与数值形式输出 +与该小写字母相应的大写字母 +*/ +int main(void){ + char ch;//数据类型 变量名; 规定了变量的存储数据类型 + //scanf("%c", &ch);//scanf(输入的格式, 地址1, 地址2) + //将占位符的格式从控制台存储到指定的内存地址 + //%c 字符型 %d整型 %u 无符号整型 %f 单精度浮点型 %lf双精度浮点型 %s 字符串 + ch = getchar();//getchar()用于从控制台读取单个字符 并返回该字符 + //printf("%d %c\n", ch-32, ch-32);//A-65 a-97 差值32 + printf("%d %c\n", toupper(ch), toupper(ch));//toupper用于将字符转换成大写字符 + + return 0; +} +``` 2.输入一个华氏温度,要求输出摄氏温度。公式为c=5/9*(f-32)