c语言最大值
发布时间: 2022-01-17 00:37:51
A. c语言 求最大值
参考代码如下:
#include<stdio.h>
void main()
{int a,b,z,c=0,x,max,s,t;
max=s=t=0;
for(a=0;a<=50;a++)
for(b=0;b<=50;b++)
{if(12*a+8*b<=480&&a+b<=50&&3*a<=100)
{z=72*a+64*b;
if(max<z){max=z;s=a;t=b;}
printf("%d %d %d\n%",a,b,z);
}
}
printf("%d %d 最大值为%d\n%",s,t,max);
}
B. C语言int类型最大值
C语言规范中并没有规定Int型到底用多少位,只是规定了不能小于16位。Int的字节数具体取决于具体的系统和编译器,unix下int型一般都是32位的。
C. C语言3个数求最大值怎么写啊!!!我搞了半天都不行!
参考代码
#include <stdio.h>
int main(void) {
int a,b,c;
scanf("%d %d %d",&a,&b,&c);// 输入3个数
int max = a;//默认最大值为a
//选出a,b中的最大值
if(max<b)
max = b;
//将前两个中最大值与c比较,得出真正的最大值
if(max < c)
max = c;
printf("%d",max);//输出最大值
return 0;
}
运行截图
D. C语言,用函数求最大值的。
C语言,用函数求最大值的步骤如下:
1,首先编辑vc6.0中的代码,将其另存为.c文件,然后单击构建按钮(或按键盘F7快捷键)。
E. c语言三者最大值
#include<stdio.h>
intmax(intx,inty,intz);//这句最好放在main函数之前
intmain()
{
inta,b,c,f;
scanf("%d%d%d",&a,&b,&c);
f=max(a,b,c);
printf("max=%d ",f);
return0;
}
intmax(intx,inty,ints)
{
intz=x;//算法应该这样写,你之前写的太不严谨了
if(z<y)z=y;
if(z<s)z=s;
returnz;
}
热点内容