在java中怎么比较三个整数大小例如(a , b, c);并从小到大输出

 我来答
丿MarsHan
推荐于2019-10-27 · TA获得超过4921个赞
知道答主
回答量:79
采纳率:0%
帮助的人:43万
展开全部

用冒泡排序,对三个数字按照由小到大进行排序。以23、11、17为例,代码如下:

import java.util.Scanner;

public class woo {

static int[] bubbleSort(int[] date) {

boolean isSwap;

for(int j = 1; j < date.length; j++) {

isSwap = false;

for(int i = 0; i < date.length - j; i++) {

if(date[i] > date[i+1]) {

date[i] = date[i] ^ date[i+1];

date[i+1] = date[i] ^ date[i+1];

date[i] = date[i] ^ date[i+1];

isSwap = true;

}

}

if(isSwap == false) 

break;

}

return date;

}

public static void main(String args[]) {

int date[] = new int[3];

System.out.println("输入三个整数:");

Scanner num = new Scanner(System.in);

for(int i = 0;i < date.length; i++)

date[i] = num.nextInt();

date = bubbleSort(date);

for(int count = 0; count < date.length; count++) 

System.out.print(date[count] +"\t");

System.out.println("");

}

}

扩展资料

通常排序算法,可以分为两大类。

非线性时间比较类排序:通过比较来决定元素间的相对次序,由于其时间复杂度不能突破O(nlogn),因此称为非线性时间比较类排序。包括交换排序、插入排序、选择排序、归并排序。

线性时间非比较类排序:不通过比较来决定元素间的相对次序,它可以突破基于比较排序的时间下界,以线性时间运行,因此称为线性时间非比较类排序。包括计数排序、桶排序、计数排序。

参考资料:冒泡法排序——百度百科

香料魔法
推荐于2019-11-13 · TA获得超过2.2万个赞
知道答主
回答量:218
采纳率:60%
帮助的人:22万
展开全部

package work;

import java.util.Scanner;//导包,获取键盘输入

/**

* 键盘输入A、B、C三个值,按从大到小顺序输出。

**/

public class Demo01 {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

System.out.println("输入数字a");

int a = sc.nextInt();

System.out.println("输入数字b");

int b = sc.nextInt();

System.out.println("输入数字c");

int c = sc.nextInt();

if (c < a && c < b && b < a) {// 通过比较c<a c<b b<a

System.out.println("一号a:" + a+"\n二号b:" + b+"\n三号c:" + c);

} else if (c < a && b < c && b < a) {

System.out.println("一号a:" + a+"\n二号c:" + c+"\n三号b:" + b);

} else if (c < a && c < b && a < b) {

System.out.println("一号b:" + b+"\n二号a:" + a+"\n三号c:" + c);

} else if (a < c && a < b && c < b) {

System.out.println("一号b:" + b+"\n二号c:" + c+"\n三号a:" + a);

} else if (a < b && a < c && b < c) {

System.out.println("一号c:" + c+"\n二号b:" + b+"\n三号a:" + a);

} else if (b < a && b < c && a < c) {

System.out.println("一号c:" + c+"\n二号a:" + a+"\n三号b:" + b);

}

}

}

解题思路:

可以用if else if语句判断,通过else if多次判断来输出。

假设C<A  且 C<B  且 B<A   则从大到小输出为 A , B , C ,用代码表示为:

if (c < a && c < b && b < a){

System.out.println("老大" + a,"老二"+b+"老三"+c);

} else if(比较条件){ }

按这个思路一一判断过去,得出A B C 三个值的大小。

扩展资料

java中三个整数排列的其他解法

import java.util.Scanner;

public class lianxi34 {

public static void main(String[] args) {

Scanner s = new Scanner(System.in);

System.out.println("输入3个整数:");

int a = s.nextInt();

int b = s.nextInt();

int c = s.nextInt();

if(a < b) {

int  t = a;

a = b;

b = t;

}

if(a < c) {

int t = a;

a = c; 

c = t;

}  

if(b < c) { 

int t = b; 

b = c;  

c = t; 

System.out.println("从大到小的顺序输出:");

System.out.println(a + " " + b + " " + c);}}

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
清蛇先明箭藤10
推荐于2017-10-14 · TA获得超过1246个赞
知道小有建树答主
回答量:115
采纳率:0%
帮助的人:116万
展开全部
import java.util.*;
public class Exercise06
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in); //利用键盘输入功能
System.out.print("a=");
int a = input.nextInt() ; //输入数字a 只能为int类型
System.out.print("b=");
int b = input.nextInt() ;
System.out.print("c=");
int c = input.nextInt() ;
Exercise06 e = new Exercise06() ;
e.sort(a,b,c);
}
void sort(int a,int b,int c)
{
int temp = 0 ;
if(a>b){
temp = a;
a = b ;
b = temp ;
}
if(a>c){
temp = a;
a = c ;
c = temp ;
}
if(b>c){
temp = b;
b = c ;
c = temp ;
}
System.out.println(a+","+b+","+c);
}
}

不过我还是建议你多用一楼的方法
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
king炬
2012-06-30 · TA获得超过297个赞
知道小有建树答主
回答量:563
采纳率:0%
帮助的人:327万
展开全部
class Test4
{
public static void main(String[] args)
{
int[] arr={1,4,2};//定义数组。
Sort s=new Sort();
s.sort(arr);
s.print(arr);
}
}
class Sort//定义方法排序数组。
{
void sort(int[] a)
{
for (int i=0;i<a.length-1 ;i++ )
{
for (int j=i+1;j<a.length;j++ )
{
if (a[i]>a[j])
{
int temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
}
//定义方法打印。
void print(int[] a)
{
System.out.print("[");
for (int i=0;i<a.length ;i++ )
{
if (i<a.length-1)
{
System.out.print(a[i]+",");
}else
System.out.print(a[i]+"]");
}
}
}

//该方法比较灵点,希望对你有助。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yuhailong626
2012-06-30
知道答主
回答量:7
采纳率:0%
帮助的人:1.1万
展开全部
if(a<b){
if(b<c){
System.out.println("a<b<c");
}else if(c<a){
System.out.println("c<a<b");
}else{
System.out.println("a<c<b");
}
}else if(a>b){
if(b>c){
System.out.println("a>b>c");
}else if(c>a){
System.out.println("c>a>b");
}else{
System.out.println("a>c>b");
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(6)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式