一个简单的逻辑错误要问问大家
是个逻辑错误
现在我想要当输入0时输出over
但现在无论输入什么时都会继续循环DO语句里的内容
我要到达我想的目的应该怎么改正啊
#include<iostream>
#include<stdio.h>
#define max 100
using namespace std;
main()
{
int a[max],b;
do
{ cout<<"please enter 4 number:"<<endl;
cin>>a[1]>>a[2]>>a[3]>>a[4];
cout<<"enter 0 to quiz,other to continue"<<endl;
cin>>b;
}
while(b=0);
{
cout<<"over";
}
}