Run ID:147516

提交时间: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; }