题目简单,注意输出格式即可。
#include<stdio.h> int main() { int i=2,N; scanf("%d",&N); while (i<10000) { if (i%N==2) printf("%d\n",i); i=i+1; } return 0; }