刷题单用的
2024-10-31 11:01:05
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
char n;
cin >> n;
if('A' <= n && n <= 'Z')
{
cout << char(n + 32);
}
else
{
cout << char(n - 32);
}
}
这里空空如也
有帮助,赞一个