拾玖


私信TA

用户名:1292143041

访问量:176

签 名:

等  级
排  名 82429
经  验 136
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校 东北大学秦皇岛分校
专  业

  自我简介:

TA的其他文章

解题思路:
if else语句
注意事项:

参考代码:

#include<iostream>

using namespace std;

int main()

{

    int a,b,c;

    cin>>a>>b>>c;

extern int max_(int a,int b,int c);

cout<<max_(a,b,c)<<endl;

return 0;

}

int max_(int a,int b,int c)

{

int max;

if (a>b)

{

if (a>c)

max=a;

else

{

max=c;

}

}

else

{

if(b>c)

{

max=b;

}

else 

{

max=c;

}

}

return max;

}


 

0.0分

0 人评分

  评论区

  • «
  • »