📄 shout!.c
字号:
#include <stdio.h>
#include <ctype.h>
void main()
{
char string[] = "You don't have to shout!";
char c;
int x;
x = 0;
puts(string);
while(c != '!')
{
c = string[x];
c = toupper(c);
string[x] = c;
x++;
}
puts(string);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -