任意输入三个数,找出其中的最大值。用C++编写
8个回答
展开全部
#include<stdio.h>
void main()
{
int a,b,c,max;
printf("qing shu ru 3 shu zi");
scanf("%d%d%d",&a,&b,&c);
max=(a>b)?a:b;
if(c>max)
max=c;
printf("%d",max);
}
void main()
{
int a,b,c,max;
printf("qing shu ru 3 shu zi");
scanf("%d%d%d",&a,&b,&c);
max=(a>b)?a:b;
if(c>max)
max=c;
printf("%d",max);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream>
using namespace std;
int main()
{
int a,b,c,max;
cout<<"Enter three numbers:";
cin>>a>>b>>c;
max=(a>b)?a;b;
if(c>max)
max=c;
else
;
cout<<"The max of three numbers is:"<<max<<endl;
return 0;
}
using namespace std;
int main()
{
int a,b,c,max;
cout<<"Enter three numbers:";
cin>>a>>b>>c;
max=(a>b)?a;b;
if(c>max)
max=c;
else
;
cout<<"The max of three numbers is:"<<max<<endl;
return 0;
}
追问
有错误
求支援
追答
5 分钟前 zhhh5219768 | 二级
#include
using namespace std;
int main()
{
int a,b,c,max;
cout>a>>b>>c;
max=(a>b)?a:b;
if(c>max)
max=c;
else
;
cout<<"The max of three numbers is:"<<max<<endl;
return 0;
}
现在好了,刚刚a与b之间应该是冒号的,我写成了分号。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这么点问题你都到这里来问,还是看下C++相关的书吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询