| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145346 | 徐毅然 | 07大小写转换 | C++ | Accepted | 0 MS | 268 KB | 246 | 2026-01-25 14:55:48 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin >> a; if (isupper(a)) { cout << char(tolower(a)) << endl; } else { cout << char(toupper(a)) << endl; } return 0; }