样例代码 #include using namespace std; int count;//计数器 void hw(int x){ int m=x; int b=0; while(x>0){//输入的相反数 b=b*10+(x); x=x/10; } x=m+b; m=x; //m储存为相加后的新数 b=0; while(x>0){//输入的相反数 b=b*10+(x); x=x/10; } //此时b为相加后数的相反数 count++; if(count>=8){ cout