8 条题解
- 1
信息
- ID
- 727
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 5
- 标签
- 递交数
- 465
- 已通过
- 190
- 上传者
#include<bits/stdc++.h> using namespace std; int main(){ char ch; cin>>ch; if('A'<=ch and ch<='Z'){ ch+=32; }else{ ch=ch-('a'-'A'); } cout<<ch; return 0; }
#include <bits/stdc++.h>
using namespace std;
int main() {
char s = '0';
scanf("%c", &s);
if (s >= 'a' && s <= 'z') {
s = s - 'a'+'A';
}else if (s >= 'A' && s <= 'Z') {
s = s -'A'+'a';
}
printf("%c\n", s);
return 0;
}
#include <stdio.h>
using namespace std;
int main() {
char s = '0';
scanf("%c", &s);
if (s >= 'a' && s <= 'z') {
s = s - 'a'+'A';
}else if (s >= 'A' && s <= 'Z') {
s = s -'A'+'a';
}
printf("%c\n", s);
return 0;
}
#include<bits/stdc++.h> using namespace std; char c; int main(){ cin >> c; c = c-32; cout << c; return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ char ch; cin>>ch; ch =ch-('a'-'A'); cout<<ch; return 0; }
#include <stdio.h>
using namespace std;
int main() {
char s = '0';
scanf("%c", &s);
if (s >= 'a' && s <= 'z') {
s = s - 'a'+'A';
}else if (s >= 'A' && s <= 'Z') {
s = s -'A'+'a';
}
printf("%c\n", s);
return 0;
}