Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133867 李亭绪 消消乐 C++ Compile Error 0 MS 0 KB 212 2025-10-22 19:47:55

Tests(0/0):


Code:

#include<iostream> #include<cstring> using namespace std; int main(){ long long i=100,g,s,b,Sum=0; while(i<1000) { g=i%10; s=i%100/10; b=i/100; if(g==s&&s==b) { cout<<i<<' '; } i++; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:5:24: warning: unused variable 'Sum' [-Wunused-variable]
  long long i=100,g,s,b,Sum=0;
                        ^
Main.cc:16:1: error: expected '}' at end of input
 }
 ^