Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125502 陈淮遇 03大写字母转小写字母 C++ Compile Error 0 MS 0 KB 120 2025-07-14 17:12:24

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { char x; cin x; x = x + 32; cout << x; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:5:6: error: expected ';' before 'x'
  cin x;
      ^
Main.cc:5:7: warning: statement has no effect [-Wunused-value]
  cin x;
       ^