#30202: 好像有點冗 C++


jojojo22845@gmail.com (lu)

學校 : 國立臺灣大學
編號 : 190663
來源 : [140.112.229.2]
最後登入時間 :
2023-06-07 10:38:04
d186. 11461 - Square Numbers -- UVa11461 | From: [101.9.238.206] | 發表日期 : 2022-05-06 19:52

#include<iostream>
using namespace std;

int main(){
int from = 0, end = 0;
while(1){
int j,count = 0;
cin >> from >> end;
if(from == 0 && end ==0){
break;
}
for(j = 1; j * j < from; j++);
for(; j * j <= end ; j++){
count++;
}
cout << count << endl;
}
return 0;
}
 
ZeroJudge Forum