#include
void main()
{
int a,b,c,max;
scanf("%d %d %d",a,b,c);
max=a;
if(maxmax=b;
if(max
printf("最大值:%d",max);
}
输入以空格分开。
本次课程我们主要讲解使用C语言如何实现求若干个数的最大数和最小数,首先我们讲解一下设计思路和伪代码,之后为大家详细展示源码,最后为大家分享一些这类程序的设计思路,欢迎大家加入程序员小白学开发一起学习!
#include
void main()
{
int a,b,c,out;
scanf("%d%d%d",&a,&b,&c);
out=a;
if(b>out) out=b;
if(c>out) out=c;
printf("%d\n",out);
}
简单的写了下……
<#include stdio.h>
<#include math.h>
void main()
{int temp;
scanf("%d",&a[i]);
temp = max(a[i]);
printf("the max number you put is %d/n",temp);
}
void max()
{
int a;
int b;
int c;
if(a > b){
c = a;}
else {
c = b;}
end if;
}
#include "stdio.h"
void main()
{
int a,b,c,max;
printf("a,b,c:");
scanf("%d %d %d",&a,&b,&c);
max=a;
if(maxif(max
printf("%d\n",max);
}