#17087: c++ answer


Atinaliao (Atina"o3o")

學校 : 臺北市私立延平高級中學
編號 : 83264
來源 : [61.71.209.152]
最後登入時間 :
2024-04-05 23:48:21
a059. 完全平方和 | From: [203.72.178.252] | 發表日期 : 2019-03-07 17:26

#include <iostream>
using namespace std;

int main()
{
      int T,totle;
      cin>>T;
      totle=T;
      while(T--)
    {   int n,m,sun=0;
          cin>>n>>m;
       for(int i=n;i<=m;i++)
      {
        for(int k=0;k<=m;k++)
        {
            if(k*k==i)
            sun+=i;
        }

      }
       cout<<"Case "<<totle-T<<": "<<sun<<endl;

    }


}

 
ZeroJudge Forum