while循环与整数不起作用

时间:2017-04-15 14:43:28

标签: c++ while-loop integer

#include <iostream>
using namespace std;

int main(){

int integer=400;
int count=1;

while (count == integer){
cout<< count<<endl;

count = count + 1;
}

}

这基本上就是我在项目中使用的内容。似乎没有输出。帮助

2 个答案:

答案 0 :(得分:2)

X → x? y正在评估错误。我想你的意思是count == integer

答案 1 :(得分:0)

您要求程序运行带有错误条件的while循环,即您要比较countinteger,其中前者的值为1,并且后者设为400(count == integer)将返回false,循环将被简单地跳过。

我认为你要做的是         while (count < integer) 其中循环将以count设置为1开始,并以1为增量增加到400(根据count = count + 1;)。