題目:#include 的應用練習。html
程序分析:無。學習
程序源代碼:spa
test.h 文件代碼以下:code
1 #define LAG > 2 #define SMA < 3 #define EQ ==
主文件代碼:htm
1 #include "test.h" 2 #include <stdio.h> 3 4 int main() 5 { 6 int i=10; 7 int j=20; 8 if(i LAG j) 9 printf("%d 大於 %d \n",i,j); 10 else if(i EQ j) 11 printf("%d 等於 %d \n",i,j); 12 else if(i SMA j) 13 printf("%d 小於 %d \n",i,j); 14 else 15 printf("沒有值。\n"); 16 return 0; 17 }
以上實例輸出結果爲:blog
10 小於 20
感謝你的閱讀,請用心感悟!但願能夠幫到愛學習的你!!分享也是一種快樂!!!請接力。。。get