【文件属性】:
文件名称:回文数(一).cpp
文件大小:474B
文件格式:CPP
更新时间:2022-10-19 10:22:14
hw
样例代码
#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<<"0"<>n;
int a;
for(int i=1;i<=n;i++){
cin>>a;
hw(a);
}
}