| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147516 | 于墨轩 | 07大小写转换 | C++ | Accepted | 1 MS | 272 KB | 252 | 2026-02-05 22:14:07 |
#include <iostream> #include <cctype> using namespace std; int main() { char c; cin >> c; if (isupper(c)) { cout << (char)tolower(c) << endl; } else { cout << (char)toupper(c) << endl; } return 0; }