单选题

#include<stdio.h>

main()

{

    int a=0,b=1,c=2;

    if(++a>0||++b>0)

    ++c;

    printf("%d,%d,%d",a,b,c);

 }

输出结果:

A

0,1,2

B

1,2,3

C

1,1,3

D

1,2,2

赣ICP备20007335号-2