使用 toupper()
函数输入大写字母
在 C 语言中,可以使用
toupper()函数将小写字母转换为大写字母。
调用语法
<code class="c">int toupper(int c);</code>
返回值
立即学习“C语言免费学习笔记(深入)”;
如果
c是小写字母,则返回其大写形式。否则,返回
c本身。
使用方法
要将小写字母输入为大写字母,可以按照以下步骤操作:
-
使用
getchar()函数获取用户的输入。 将获取的输入传递给
toupper()函数。 将转换后的字符打印到屏幕上。
代码示例
<code class="c">#include <stdio.h>
#include <ctype.h>
int main() {
char c;
printf("请输入一个小写字母:");
c = getchar();
c = toupper(c);
printf("大写字母为:%c\n", c);
return 0;
}</code>示例输出
<code>请输入一个小写字母:a 大写字母为:A</code>
