c语言编程实现输出1~100之内所有不能被7整除的整数之和

问题描述:

c语言编程实现输出1~100之内所有不能被7整除的整数之和

#include int main (){ int i; int sum = 0; for (i = 1; i