Run ID:149548

提交时间:2026-03-14 11:19:32

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