c语言编程写一个函数,返回三个整数中的中间数

日期:2017-07-27 00:51:22 人气:1

c语言编程写一个函数,返回三个整数中的中间数

只有3个数,穷举比较实现很方便,所以在输入3个数后直接利用if...else if结构比较大小取中值输出即可。代码如下: #include "stdio.h"int main(int argc,char *argv[]){ int a,b,c; printf("Input 3 integers...\n"); scanf("%d%d%d",&a,&b,&c); printf("In the middle of the numbe
    A+
热门评论