Run ID:141123

提交时间:2025-12-21 11:41:50

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