任意输入三个数,找出其中的最大值。用C++编写

如题所述

#include <stdio.h>

void main

{

char  n1,n2,n3,max;

scanf(“%c%c%c”&n1,&n2,&n3);

max=n1>n2?n1:n2;

printf(“%c\n”,max);

}

注意:C语言中的标点符号都需要为英文中的标点符号。

扩展资料

使用其他的方法得到3个数的最大值:

#include <iostream>

using namespace std;

int main( )

{

int a1, a2, a3;

cout << "请分别输入三个整数:" << endl;

cout << "a1 = ";

cin >> a1;

cout << "a2 = ";

cin >> a2;

cout << "a3 = ";

cin >> a3;

cout << "利用条件表达式找出三个数的最大值为:";

cout << (a1 >= a2 ? a1 >= a3 ? a1 : a3 : a2 >= a3 ? a2 : a3) << endl;

}

温馨提示:内容为网友见解,仅供参考
第1个回答  2012-04-06
程序如下,望楼主采纳:
#include<iostream>
using namespace std;
float maxNum(float,float,float);
int main()
{
float x,y,z;
cout<<"请依次输入三个数:"<<endl;
cin>>x>>y>>z;
float maxN = maxNum(x,y,z);
cout<<"最大值是:"<<maxN<<endl;
}
float maxNum(float a,float b,float c)//求三个数中的最大值
{
if(a>=b && a>=c)
return a;
else if(b>=c)
return b;
else return c;

}
第2个回答  2012-04-06
#include<iostream>
using std::cin;
using std::cout;
using std::endl;
int main(){
int a,b,c;

cout<<"请任意输入第一个数:"<<endl;
cin>>a;
cout<<"请任意输入第二个数:"<<endl;
cin>>b;
cout<<"请任=意输入第三个数:"<<endl;
cin>>c;
int max=a;
if(b>=max)max=b;
if(c>=max) max=c;
cout<<"最大的数是:";
cout<<max<<endl;
return 0;
}
第3个回答  2012-04-06
#include<iostream>
using namespace std;
#define max(a,b) (((a) > (b)) ? (a) : (b))
int main()
{
double threemax(double m1,double m2,double m3);
double a1,a2,a3;
cout<<"input three number:"<<endl;
cin>>a1>>a2>>a3;

cout<<"the max of three number"<<a1<<" "<<a2<<" "<<a3<<"is"<<threemax(a1,a2,a3)<<endl;

return 0;
}
double threemax(double m1,double m2,double m3)
{
double t;
return max(t,m3);
t = max(m1,m2);
}
第4个回答  2019-02-02
#include<iostream>
#include<algorithm>
using namespace std;
int main(void)
{
int a[3];
while(cin>>a[0]>>a[1]>>a[2])
{
sort(a,a+3);
cout<<"The maximum number is : "<<a[2]<<endl;
cout<<"The minimum number is : "<<a[0]<<endl;
}
return 0;
}

任意输入三个数,找出其中的最大值。用C++编写
{ char n1,n2,n3,max;scanf(“%c%c%c”&n1,&n2,&n3);max=n1>n2?n1:n2;printf(“%c\\n”,max);} 注意:C语言中的标点符号都需要为英文中的标点符号。

用C++编写一个C程序,输入a,b,c,3个值,输出其中最大者
{ int a,b,c,Max;printf("请输入3个数:\\n");scanf("%d%d%d",&a,&b,&c);Max=a>b?(a>c?a:c):(b>c?b:c);printf("3个数中最大值为:%d\\n",Max);return 0;}

编程用指针实现输入三个整数,求其中的最大值
include <iostream.h> int max(int *p)\/\/求最大值 { int Max;if(*p>*(p+1)) \/\/这里如果写作:*p>*p[1];就错了,要注意,下面的一样 Max=*p;else Max=*(p+1);if(Max>*(p+2));else Max=*(p+2);return Max;} void main(){ int a[3];cout<<"请输入三个数:";for(...

输入abc三个数,求最大的数。用C++编写怎么写?
void main() \/\/主函数 程序入口 { int max(int t[3]); \/\/声明要调用的求最大值的函数 int i,a[3]; \/\/i用来做循环变量 数组a用来做输入的三个数 for(i=0;i<3;i++){ printf("请输入第%d个值",i+1);scanf("%d",&a[i]); \/\/将三个数人别存入数组的三个空间里 } printf(...

C++程序设计:从键盘上输入三个整数,求出其中最大值与最小值,用条件运算...
cout << "请分别输入三个整数:" << endl;cout << "a1 = ";cin >> a1;cout << "a2 = ";cin >> a2;cout << "a3 = ";cin >> a3;cout << "利用条件表达式找出三个数的最小值为:";cout << (a1 <= a2 ? a1 <= a3 ? a1 : a3 :a2 <= a3 ? a2 : a3) << endl;...

c++中有三个数ABC要输出最大值
int getmax(int a, int b, int c){ int res = max(a, b);res = max(res, c);return res;}

c++简单编程题,要求用户任意输入三个数,并输出任意三个数中的最大值...
程序本身没什么错误就是 include <iostream.h> 这种写法太老了, 新的编译器可能不会接受的 换成如下形式:include<iostream> using namespace std;这样就没有问题了

c语言输入三个数,显示最大值。
5、再次点击文件、新建。6、选择c++ source file 并在右侧输入文件名字。7、输入代码,这里以abc分别代表三个不同的数,其他需要比较的数只要把abc换成相应的数就可以了。注意代码的输入要在英文输入法的环境下进行。8、点击右上角的编译运行按钮。9、就可以得到了三个数中的最大值并且输出来了。

输入三个变量,输出最大值和最小值。
他那个是C++的 用C的话 include <stdio.h> main(){ int a,b,c,max,min;printf("输入三个数:\\n");scanf("%d%d%d",&a,&b,&c);if(a>b){ max=a;min=b;} else{ max=b;min=a;} if(c>max) max=c;if(c<min) min=c;printf("max=%d\\nmin=%d\\n",max,min);return 0;}...

求三个数中的最大值 C++
int max(int a,int b){ return a>b?a:b;} void main(){ max(max(a,b),c);}

相似回答