Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40952 Songgy_King 字符大小写转换 C++ 运行出错 0 MS 236 KB 331 2024-02-18 11:42:03

Tests(0/1):


#include <iostream> using namespace std; int main() { char a[20]; int i = 0; cin>>a; for(;a[i];i++) { if(a[i] >= 'a'&&a[i] <= 'z') a[i] -= 32; else if(a[i] >= 'A'&&a[i] <= 'Z') a[i] += 32; } for(i = 0;a[i];i++) cout<<a[i]; cout<<endl; system("pause"); return 0; }


测评信息: