用c++写统计200~1000之间能被7整除数的数的个数
时间: 2023-03-31 12:03:08 浏览: 237
C++常用基本程序.docx
可以使用循环语句和条件语句来编写程序,具体代码如下:
#include <stdio.h>
int main() {
int count = ;
for (int i = 200; i <= 100; i++) {
if (i % 7 == ) {
count++;
}
}
printf("200~100之间能被7整除的数的个数为:%d\n", count);
return ;
}
以上是我的回答,希望能对您有所帮助。
阅读全文