用c语言来解决编写程序,输出1到200之间能被11整除的所有整数。
#include <stdio.h> int main() { int i; for(i = 1;i <= 200;i++){ if(i % 11 == 0){ printf("%d ",i); } } return 0; }