不是VIP会员,不能显示答案

题目解答

题目:
(判断平方数) 问题:给定一个正整数n,判断这个数 是不是完全平方数,即存在一个正整数x使得x的平方等于n

试补全程序

#include<iostream>

#include<vector>

using namespace std;



bool isSquare(int num) {

int i = __(1)__ ;

int bound = __(2)__ ;

for(; i<=bound; ++i) {

if( __(3)__ ) {

return __(4)__ ;

}

}

return __(5)__ ;

}

int main() {

int n;

cin>>n;

if(isSquare(n)) {

cout<<n<<" is a Square number"<<endl;

} else {

cout<<n<<" is not a Square number"<<endl;

}

return 0;

}


选择题

1) ⑴处应填( )。

2) ⑵处应填( )。

3) ⑶处应填( )。

4) ⑷处应填( )。

5) ⑸处应填( )。
考点:
分析:
解答:
评论:
老师: