Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149547 王显端 消消乐 C++ Accepted 0 MS 264 KB 217 2026-03-14 11:19:04

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int g,s,b,i; for(i=100;i<=999;i++){ g=i%10; s=i/10%10; b=i/100; if(g==b&&g==s&&b==s){ cout<<i<<" "; } } return 0; }