3024 大写转小写
#include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; int main() { char c; cin >> c; c = c + 32; //"数大小" 数字 < 大写 < 小写,其中大小写相差32,所以大写转小写即:大写 + 32 cout << c; return 0; }