Run ID:91852

提交时间:2024-09-22 18:39:18

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