當我構建並運行我的代碼時,它立即返回0,表示編程成功,但是我希望它顯示所有的數字從100 200是由4我的程序運行並返回0,但它沒有顯示給出它的cout數據。
這裏是我的代碼分割...
#include <iostream>
using namespace std;
int main()
{
int num = 200;
int snum;
cout<<"The following numbers are all divisble by 4 and are inbetween 100 and 200\n";
while(num<99)
{
snum = (num % 4) ;
cout<<snum<<endl;
cout<<num<<endl;
if(snum = 0)
{
cout<< num << endl;
}
else
{
}
num--;
}
return 0;
}
我已經用另一個建議更新了我的答案。 –