当我构建并运行我的代码时,它立即返回 0 表示编程成功,但是我希望它显示从 100 到 200 的所有数字,这些数字可以被 4 整除。
这是我的代码...
#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;
}