Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141138 刘杨国卿 消消乐 C++ Accepted 0 MS 260 KB 217 2025-12-21 11:46:13

Tests(1/1):


Code:

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