Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
121862 鲁博睿 消消乐 C++ Accepted 1 MS 260 KB 207 2025-06-08 16:35:26

Tests(1/1):


Code:

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