#include <stdio.h> main() { int i=0; while(i<5){ if(i%2==0) continue; printf("%d"

我要回帖