简单,但要注意i的范围
#include<stdio.h> int main() { int N; scanf("%d",&N); for(int i=2;i<10000;i++) { if(i%N==2) printf("%d\n",i); } return 0; }