题解 | #自守数#
自守数
https://www.nowcoder.com/practice/88ddd31618f04514ae3a689e83f3ab8e
#include<stdio.h>
#include<math.h>
int main()
{
int n=0;
while(scanf("%d",&n)!=EOF)
{
int count=0;
for(int i=0;i<=n;i++)
{
if(i==0)
count++;
else
{
int m1=i;
int m2=pow(i,2);
while(m1>0)
{
if(m1%10!=m2%10)
break;
m1/=10;
m2/=10;
if(m1==0)
count++;
}
}
}
printf("%d",count);
}
return 0;
}
#include<math.h>
int main()
{
int n=0;
while(scanf("%d",&n)!=EOF)
{
int count=0;
for(int i=0;i<=n;i++)
{
if(i==0)
count++;
else
{
int m1=i;
int m2=pow(i,2);
while(m1>0)
{
if(m1%10!=m2%10)
break;
m1/=10;
m2/=10;
if(m1==0)
count++;
}
}
}
printf("%d",count);
}
return 0;
}