One Note with Two Memories
一個人的筆記,兩個人的回憶。 Without catching, the dream only is the dream
....
2014年5月13日 星期二
[長知識] C語言 - 新手篇章 - 邏輯運算子
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int a=1, b=2, c=3;
//
a < b
-->
output=0
表示 錯誤
//
a < b
-->
output=1
表示 正確
printf( "
%i
<
%i
?
%i
\n " ,
a
,
b
,
a<b
); // 1
printf( " %i < %i ? %i \n" , a, b, a>=b); // 0
return 0;
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言