Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95593 谭思宸 04倒序输出五位数 C++ Compile Error 0 MS 0 KB 182 2024-10-30 20:00:29

Tests(0/0):


Code:

#include<iostream> #include<cstdio> using namespace std; int main() int n; cin<<n; int mun=0; while(n!=0){ mun*=10; mun+=n%10; n\=10; }


Run Info:

Main.cc:11:5: error: stray '\' in program
     n\=10;
     ^
Main.cc:5:5: error: expected initializer before 'int'
     int n;
     ^
Main.cc:6:5: error: 'cin' does not name a type
     cin<