通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
若变量已正确定义,有以下程序段:
int a=3,b=5,c=7; if(a>b) a=b;c=a; if(c!=a)c=b; printf("%d,%d,%d\n",a,b,c);
其输出结果是( )。