Run ID:152588

提交时间:2026-04-26 17:50:17

#include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int g,s,b,i; for(i=100;i<=999;i++){ g=i%10; s=i/10%10; b=i/100; if(g==b&&g==s){ cout<<i<<endl; } } return 0; }