the problem I have to solve is checking n numbers introduced by the user if they are perfect squares and then I have to calculate the sum of these perfect squares. I understand how to do these, but my code simply doesn't work at the part which should calculate the sum. I don't know what to do.
int main()
{
int n, num, sum, iVar;
float fVar;
sum=0;
fVar=sqrt((double)num);
iVar=fVar;
printf("Introduce numbers, press 0 to stop:");
for(n=0; ; n++)
{
scanf("%d", &num);
if(num==0){break;}
if(iVar==fVar)
{
sum+=num;
}
}
printf("Sum of all perfect squares is: %d", sum);
return 0;
}
You can do as below. For running infinite loop you can use
while(num)
instead offor(n=0; ; n++)
.