用java语言程序,比较三个数的大小,输出最大的那个数

 我来答
pieryon
2015-01-05 · 知道合伙人数码行家
pieryon
知道合伙人数码行家
采纳数:14411 获赞数:166867
获取软件设计师高级职称 万达金融最佳创新奖

向TA提问 私信TA
展开全部
你好,帮你写了一个例子:
import java.lang.Math;
import java.util.Scanner;
public class max {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
System.out.println("Please input 3 integers: ");
int x = Integer.parseInt(keyboard.nextLine());
int y = Integer.parseInt(keyboard.nextLine());
int z = Integer.parseInt(keyboard.nextLine());
int max = Math.max(x,y);
if(max>y){ //suppose x is max then compare x with z to find max number
max = Math.max(x,z);
}
else{ //if y is max then compare y with z to find max number
max = Math.max(y,z);
}
System.out.println("The max of three is: " + max);
}
}

请记得采纳哦!
百度网友c348687
2015-01-05 · TA获得超过112个赞
知道答主
回答量:78
采纳率:0%
帮助的人:32.9万
展开全部
源代码如下:

public class Test

{

public static void main(String arg[])

{int
a; int b; int c; int temp;

if (a<b)

{temp=b;

b=a;

a=temp;

}

if (b<c)

{temp=b;

b=c;

c=temp;

}

if (a<b)

{temp=b;

b=a;

a=temp;

}

System.out.println("最大的数是:"a"+=);

}

}
更多追问追答
追问
亲,这个比较大小是不是也可以用if,else,,
追答
if...else和if 效果一样的,可以的
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9560ec
2015-01-05 · 贡献了超过372个回答
知道答主
回答量:372
采纳率:0%
帮助的人:76.8万
展开全部
!!
追问
怎么了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式