csdn第五届在线编程大赛-全然平方

Posted gccbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csdn第五届在线编程大赛-全然平方相关的知识,希望对你有一定的参考价值。

题目详情

给定整数区间[A,B]问当中有多少个全然平方数。

输入格式:

多组数据,包括两个正整数A,B 1<=A<=B<=2000000000。

输出格式:

每组数据输出一行包括一个整数。表示闭区间[A,B]中包括的全然平方数的个数。

答题说明

输入例子

1 1

1 2

3 10

3 3

输出例子:

1

1

2

0

解答:

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
	double begin, end;
	while(cin >> begin)
	{
		cin >> end;
		double d_begin = sqrt(begin);
		int i_begin = sqrt(begin);
		if(abs(d_begin - i_begin) < 0.000000000001)
			cout << (int)sqrt(end) - (int)sqrt(begin) + 1 << endl;
		else 
			cout << (int)sqrt(end) - (int)sqrt(begin) << endl;
	}
	return 0;
}


以上是关于csdn第五届在线编程大赛-全然平方的主要内容,如果未能解决你的问题,请参考以下文章

第五届在线编程大赛月赛第三题:石子游戏

信息工程学院第五届科技文化节之C语言编程大赛

在线编程大赛等你来战

海淀区第五届智慧杯编程思维类(C++普及组)题目&题解&标程

第五届蓝桥杯大赛个人赛(软件类)省赛真题

全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段