好象大家都没有完全理会意思。
求助,写一个很简单的编程!!!!
Count from 1-100 using for
If a number is
Divisible by 7
Divisible by 11
Ends in 7
output "BUZZ!"
otherwise just output the number
You will need to use IF and % to do this
在1-100的数字里。
如果一个数字能被7整除,或能被11整除 或者结尾是7
就输出一个“BUZZ!”
另外 纸输出这个数字
我觉得代码应该如下:
#include<iostream>
using namespace std;
int main()
{
int i;
for (i=1;i<=100;i++)
{
if (i%7 !=0 && i%11 !=0 && i%10!=7)
{cout<<i<<"\n";}
else
cout<<"BUZZ \n";
}
}