>
条件表达式的应用
#include <stdio.h>int main(){int a,b;printf("请输入a的值:");scanf("%d",&a);(a > 5) ? (b = 3) :( b = -3);printf("%d\n",b);return 0;}
结果:
请输入a的值:6
3
请按任意键继续. . .
相关文章