关于C++,从键盘输入3个整数,输出其中最大数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于C++,从键盘输入3个整数,输出其中最大数相关的知识,希望对你有一定的参考价值。

关于C++,从键盘输入3个整数,输出其中最大数

#include <iostream>
using namespace std;
void main()

int a,b,c,max;
cout<<"please input the three num:";
cin>>a>>b>>c;
max=(a>b)?a:b;
max=(max>c)?max:c;
cout<<"max is :"<<max<<endl;
参考技术A #include <iostream>
using namespace std;

void main()

int a, b, c;
int max;

cout<<"请输入三个整数: "<<endl;
cin>>a>>b>>c;

max = a>b ?a : b;
max = max>c?max : c;
cout<<"最大的数是: "<<max<<endl;
参考技术B #include <iostream>
using namespace std;

int
main()

int max = 0;
for( int i = 1; i <= 3; i++ )

int a;
cin >> a;
a = a > max ? a : max;

cout << max << endl;

return 0;
参考技术C #include <iostream>
using namespace std;

int main()

int a,b,c,max;
cout<<"plz input data:";
cin>>a>>b>>c;
max=a;
if(max<b)
max=b;
else
if(max<c)
max=c;
cout<<"max is :"<<max<<endl;
参考技术D #include <iostream.h>

void main()

int A, B, C;
int max;

cout<<"Please enter three numbers: "<<endl;
cin>>A>>B>>C;

max = A>B ? A : B;
max = max>C ? max : C;
cout<<"The max number is: "<<max<<endl;
第5个回答  2009-11-16 该程序应该对你有所帮助,不过是用c语言写的,大同小异,可以输出十个数中最大的并且可以输出最大数的下标值!
#include<conio.h>
#include<stdio.h>

int main()

int n[10]=1,4,2,3,6,9,8,0,7,5;
int max,flag;
int i;

max=n[0];
flag=0;

for(i=0;i<10;i++)

if(max<n[i])

max=n[i];
flag=i;



printf("max=%d,flag=%d ",max,flag);

getch();
return 1;

以上是关于关于C++,从键盘输入3个整数,输出其中最大数的主要内容,如果未能解决你的问题,请参考以下文章

c++编程)键盘输入一个高精度的正整数M,去掉其中任意S个数字后使剩下的数最小

用c语言编程,从键盘上输入10个整数存放到一维数组中,输出其中最大的数及其对应的数组下标值

C++ 输入10个整数 输出最大数

java编程从键盘输入10个整数,编程实现将其中最大数与最小数的位置对换后,再输出调整后的数组。

C语言数组从键盘输入10个整数存入数组,找出其中最大和最小值,并输出。

Java程序题:从键盘输入的方式,产生10个10以内的整数,输出这10个数中最大数与最小数的平方和?