小弟接觸程式時間沒有很長.有很多不熟的地方請多包涵.
#include<stdio.h>
#include<math.h>
int main()
{
int a,b,T;
while(scanf("%d",&T)!=EOF)
{
int i,j;
for(i=1;i<=T;i++)
{
scanf("%d%d",&a,&b);
int p1=0,p2=0;
for(j=a;j<=b;j++)
{
p1=pow(j,0.5);
if(j==pow(p1,2))
p2+=j;
}
printf("Case %d: %d \n",i,p2);
}
}
return 0;
}