C语言编程题:编写一个函数,用于求两个数中的较小数;用主函数调用这个函数并输出结果。
答案:6 悬赏:80 手机版
解决时间 2021-02-17 17:34
- 提问者网友:沉默的哀伤
- 2021-02-17 02:15
C语言编程题:编写一个函数,用于求两个数中的较小数;用主函数调用这个函数并输出结果。
最佳答案
- 五星知识达人网友:長槍戰八方
- 2021-02-17 03:23
fan(a,b)
If(a>b) reture b;
If(a<b) reture a;
Main()
剩下的简单自己写吧,我用手机不方便
If(a>b) reture b;
If(a<b) reture a;
Main()
剩下的简单自己写吧,我用手机不方便
全部回答
- 1楼网友:渊鱼
- 2021-02-17 08:37
int min(int a,int b)
{
if(a<b) return a;
else return b;
}
int main()
{
int a,b;
a=3;
b=4;
printf("%d\n",min(a,b));
return 0;
}
- 2楼网友:往事隔山水
- 2021-02-17 06:59
int GetMin(int x,int y){
return x > y ? y : x;
}
int main(){
int x=2;
int y=3;
printf("%d",GetMin(x,y));
return 0;
}
- 3楼网友:酒醒三更
- 2021-02-17 05:46
#include
using namespace std;
int max(int,int);
int max(int m,int n){return(m>n)?m:n;}
int main(){
cout<<"请输入3个整数"<>x>>y>>z;
cout<<"这三个整数中最大的是:";
cout<< max(max(x,y),z)<
- 4楼网友:北方的南先生
- 2021-02-17 05:26
int minInt(int a, int b)
{
if (a>b)
return b;
return;
}
void main()
{
int a= 10;
int b= 20;
int c = minInt(a, b);
printf("%d\n", c);
}
- 5楼网友:轮獄道
- 2021-02-17 04:21
int Min(int x,int y)
{
return (x<y)?x:y;
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯