#31886: cpp ans


jasontw77661@gmail.com (Jason Chang)

學校 : 不指定學校
編號 : 171679
來源 : [140.113.136.219]
最後登入時間 :
2023-06-13 20:09:12
a059. 完全平方和 | From: [36.224.33.144] | 發表日期 : 2022-08-25 18:12

#include <iostream>
#include<cmath>
using namespace std;
int main(){
  int a,b,n,i = 1,sum = 0;
  cin >> n;
  while(i <= n){
        sum = 0;
     cin >> a >> b;
     int temp1,temp2;
     temp2 = sqrt(b);
     if(sqrt(a)==(int)sqrt(a)){
       temp1 = sqrt(a);
     }else{
     temp1 = sqrt(a) + 1;
     }
     for(int j = temp1;j <= temp2;j++){
         sum = sum + j * j;
     }
     cout <<"Case "<< i <<": "<< sum <<endl;
     i++;
  }
}

 
ZeroJudge Forum