c ++打印数组中的完整正方形数字

时间:2016-10-05 16:02:19

标签: c++

如何打印阵列中可用的所有完整正方形数字

这是我的阵列:

int main()
{

int array[6];

cout<<"Enter 6 #'s: "<<endl;
for(int i=0; i<6; i++) {
    cin>>array[i];
}

1 个答案:

答案 0 :(得分:1)

这是算法:

For each slot in the array do:
  if value in the slot is complete square number, print it.

困难的部分是确定一个完美的正方形 提示:使用sqrt(平方根)函数。