首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴Shay嘻嘻嘻的代码贴C语言
#include <stdio.h>
void  max2( int x1,  int x2  ,int  x3,  int  *y1 ,int  *y2)
    {   if (x1>=x2  && x1>=x3)
                            {   *y1=x1;
                                   if(x2>=x3)     *y2=x2;
                                   else   *y2=x3;
                             }
                      if(x1>=x2 && x1< x3)
                             {   *y1=x3;
                                   if(x1>=x2)  *y2=x1;
                                   else  *y2=x2;
                              }
......................
阅读全部 | 2020年2月27日 16:31
1
Shay嘻嘻嘻