填空题

int x=6, y=7;
           printf(“%d,”,x++);
      printf(“%d\n”,++y); 
程序的输出结果是()

【参考答案】

6,8