编写算法程序,编出1至100(包括1和100)内能被7整除的所有整数

问题描述:

编写算法程序,编出1至100(包括1和100)内能被7整除的所有整数

#include
using namespace std;
void main()
{
int i;
for(i=1;i{
if(0==i%7)
{
cout}
}
}

for i=1 to 100
if i mod 7=0 then print i
next