#include <stdio.h> int main () { //编程输出100以内能被7整除的数 printf("100以内能被7整除的数有:\n"); for(int i=1;i<=100;i++){ if(i%7==0){ printf("%d\t",i); } } }