最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

c語言練習(xí)

2022-10-11 22:00 作者:沐笙--ms  | 我要投稿


[例4.1] 關(guān)系運算符的應(yīng)用


main()

{ int a,b,c;

a=1+5>2*4;

b='A'<'B';

c=a==b;

printf("a=%d,b=%d,c=%d\n",a,b,c);

}

[例4.2] 邏輯運算典型的運算量是關(guān)系表達(dá)式


main()

{ int a=2,b=3,p=5,q=6,x=7,y=8;

int result1,result2,result3;

result1=!(a>b);

result2=10<x && x<100;

result3=p==q || x!=y;

printf("result1=%d,result2=%d,result3=%d\n",result1,result2,result3);

}

[例4.3] 邏輯運算的運算量是算術(shù)表達(dá)式


main()

{ int a=1,b=2,c=3;

int result1,result2,result3;

result1=!a;

result2=b && c;

result3=2*a-b || 'A';

printf("result1=%d,result2=%d,result3=%d\n",result1,result2,result3);

}

[例4.4-1] 使用if()~,將輸入的兩個數(shù)中最大的打印出來。


main()

{ int a,b,c;

scanf("%d%d",&a,&b);

c=a;

if(a<b) c=b;

printf("Max=%d\n",c);

}

[例4.4-2] 使用if()~,將輸入的兩個數(shù)先大后小輸出。


main()

{ int a,b,t;

scanf("%d%d",&a,&b);

if(a<b)

{ t=a;

? a=b;

? ? ? ? ? b=t;

}

printf("%d,%d\n",a,b);

}


c語言練習(xí)的評論 (共 條)

分享到微博請遵守國家法律
泰宁县| 张家口市| 墨江| 柏乡县| 星座| 改则县| 靖远县| 弥勒县| 沾益县| 平乐县| 封丘县| 海宁市| 江北区| 赤壁市| 恩施市| 山阳县| 闸北区| 玉山县| 长宁区| 兴化市| 湘潭市| 黎城县| 天柱县| 铜鼓县| 滨海县| 安泽县| 芜湖县| 瓦房店市| 林甸县| 商都县| 沈丘县| 九江县| 基隆市| 新沂市| 新巴尔虎左旗| 紫云| 江安县| 闽清县| 九台市| 仲巴县| 永泰县|