赞
踩
625这个数字很特别,625的平方等于390625,刚好其末3位是625本身。除了625,还有其它的3位数有这个特征吗?还有一个!该数是:_____________
376
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
for(int i=100;i<999;i++)
{
int i2=i*i;
if(i2%1000==i) cout<<i<<endl;
}
return 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。