Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141122 刘杨国卿 消消乐 C++ Wrong Answer 1 MS 264 KB 219 2025-12-21 11:41:08

Tests(0/1):


Code:

#include <bits/stdc++.h> using namespace std; int main (){ int a,b,c; for(int i=100;i<=999;i++){ int a=i%10; int b=i%100/10; int c=i/100; if(a==b==c){ cout<<i<<endl; } } return 0; }


Run Info:

------Input------
0
------Answer-----
111 222 333 444 555 666 777 888 999
------Your output-----
100 111 122 133 144 155 166 177 188 199