c语言:条件表达式的应用 -电脑资料

电脑资料 时间:2019-01-01 我要投稿
【www.unjs.com - 电脑资料】

    条件表达式的应用

   

#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

    请按任意键继续. . .

最新文章