#include void main(){ printf("输出结果为:\n"); for(int i = 1; i <= 8; i++) { if(i != 4) { printf("%d ", i); } } printf("\n");}