通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
#include<stdio.h> main() { int a=0,b=1,c=2; if(++a>0||++b>0) ++c; printf("%d,%d,%d",a,b,c); }
输出结果: