C语言实例解析(第二版)-實例4 比較實數大小[接收鍵盤輸入數值,並判斷數值大小(使用三元運算子)]
C语言实例解析(第二版)-實例4 比較實數大小[接收鍵盤輸入數值,並判斷數值大小(使用三元運算子)]
資料來源: http://down.51cto.com/data/435822
線上執行:http://www.tutorialspoint.com/compile_c_online.php / http://codepad.org/
Code
/* 输入两个浮点数,输出它们中的大数 */ #include <stdio.h> main() { float x,y,c; /* 变量定义 */ printf("Please input x and y:\n"); /* 提示用户输入数据 */ scanf("%f%f",&x,&y); c=x>y?x:y; /* 计算c=max(x,y) */ printf("MAX of (%f,%f) is %f",x,y,c); /* 输出c */ }