#include<stdio.h>
main()
{
int a=0,b=1,c=2;
if(++a>0||++b>0)
++c;
printf("%d,%d,%d",a,b,c);
}
输出结果:
0,1,2
1,2,3
1,1,3
1,2,2