在c++中将小写的字母变成对应的大写字母 输入 一个小写字母a-z 输出 小写字母对?

大神,打扰一下,在c++中将小写的字母变成对应的大写字母 输入 一个小写字母a-z 输出 小写字母对?
最新回答
╭⌒浅浅笑

2024-10-31 12:51:30

#include<iostream>
using namespace std;

char toupper(char ch)
{
if(ch >= 'a' && ch <= 'z')
return ch-32;
return ch;
}

int main()
{
char str[] ="this is a test.";
for(int i = 0; str[i]; i++)
putchar(toupper(str[i]));

putchar('\n');
return 0;
}