c语言程序设计输出100以内被7整除的数

如题所述

第1个回答  2017-05-19
#include"stdio.h"
main()
{
int i;
for(i=7;i<=100;i++)
if(i%7==0)printf("%d\n",i);
}本回答被提问者采纳
相似回答