#include <cstdio>
#include <cctype>
using namespace std;
char x;
int main()
{
scanf("%c", &x);
printf("%c", toupper(x));
return 0;
}
洛谷P5704题解
最新推荐文章于 2025-06-12 23:09:27 发布
#include <cstdio>
#include <cctype>
using namespace std;
char x;
int main()
{
scanf("%c", &x);
printf("%c", toupper(x));
return 0;
}