C 練習(xí)實(shí)例50
題目:#include 的應(yīng)用練習(xí)。
程序分析:無(wú)。
程序源代碼:
test.h 文件代碼如下:
#define LAG > #define SMA < #define EQ ==
主文件代碼:
// Created by o2fo.com on 15/11/9. // Copyright © 2015年 W3Cschool教程. All rights reserved. // #include "test.h" #include <stdio.h> int main() { int i=10; int j=20; if(i LAG j) printf("%d 大于 %d \n",i,j); else if(i EQ j) printf("%d 等于 %d \n",i,j); else if(i SMA j) printf("%d 小于 %d \n",i,j); else printf("沒(méi)有值。\n"); return 0; }
以上實(shí)例輸出結(jié)果為:
10 小于 20
更多建議: