#include <iostream>
using namespace std;
int main(){
int integer=400;
int count=1;
while (count == integer){
cout<< count<<endl;
count = count + 1;
}
}
这基本上就是我在项目中使用的内容。似乎没有输出。帮助
答案 0 :(得分:2)
X → x? y
正在评估错误。我想你的意思是count == integer
。
答案 1 :(得分:0)
您要求程序运行带有错误条件的while循环,即您要比较count
和integer
,其中前者的值为1
,并且后者设为400
。
(count == integer)
将返回false,循环将被简单地跳过。
我认为你要做的是
while (count < integer)
其中循环将以count
设置为1开始,并以1为增量增加到400(根据count = count + 1;
)。