欧美另类日韩中文色综合,天堂va亚洲va欧美va国产,www.av在线播放,大香视频伊人精品75,奇米777888,欧美日本道免费二区三区,中文字幕亚洲综久久2021

c語(yǔ)言:&&和||的關(guān)系 -電腦資料

電腦資料 時(shí)間:2019-01-01 我要投稿
【www.lotusphilosophies.com - 電腦資料】

   

&&和||的關(guān)系:#include <stdio.h>int main(){int i = 0,a=1,b=2,c=3,d=4;//&&每個(gè)表達(dá)式都要執(zhí)行,||第一個(gè)表達(dá)式為真,后面的就不執(zhí)行了/*i= a++&&++b&&d++;*/i = a++||++b||d++;/*printf("a=%d\nb=%d\nc=%d\nd=%d\n",a,b,c,d);*///2 3 3 5printf("a=%d\nb=%d\nc=%d\nd=%d\n", a, b, c, d);//2 2 3 4printf("i=%d\n",i);//1return 0;}

最新文章