JAVA 编程题 对给定的3个数进行排序按从大到小的顺序排列输出
3个回答
展开全部
实现思路:实际上就是先输入三个数,之后分别和另外两个数比较,之后从大到小进行数值替换,之后分别输出即可。
import javax.swing.JOptionPane;
public class Arrange{
public static void main (String args[]){
String str;
int x,y,z;
int temp;
str=JOptionPane.showInputDialog("请输入第一个数");
x=Integer.parseInt (str);
str=JOptionPane.showInputDialog("请输入第二个数");
y=Integer.parseInt (str);
str=JOptionPane.showInputDialog("请输入第三个数");
z=Integer.parseInt (str);
if(x>y) {
temp = y;
y = x;
x = temp;
}
if(y>z){
temp = y;
y = z;
z = temp;
}
if(x>y){
temp = y;
y = x;
x = temp;
}
System.out.println("从大到小排列="+z+" "+y+" "+x);
}
}
import javax.swing.JOptionPane;
public class Arrange{
public static void main (String args[]){
String str;
int x,y,z;
int temp;
str=JOptionPane.showInputDialog("请输入第一个数");
x=Integer.parseInt (str);
str=JOptionPane.showInputDialog("请输入第二个数");
y=Integer.parseInt (str);
str=JOptionPane.showInputDialog("请输入第三个数");
z=Integer.parseInt (str);
if(x>y) {
temp = y;
y = x;
x = temp;
}
if(y>z){
temp = y;
y = z;
z = temp;
}
if(x>y){
temp = y;
y = x;
x = temp;
}
System.out.println("从大到小排列="+z+" "+y+" "+x);
}
}
展开全部
//第一种简单方法:
public class C123{
public static void main(String args[]){
int a=34,b=62,c=5;,smallest;
sort3(a,b,c);}
static void sort3(){
int temple;
if(x>y){temple=x;x=y;y=temple;}
if(x>z){temple=x;x=z;z=temple;}
if(y>z){temple=y;y=z;z=temple;}
System.out.println("Sorted:"+x+","+y+","+z);
return;
}
}
//第二种简单方法:
import java.util.*;
class ArraySort{
public static void main(String args[]){
int a[]={,23,64,25};
Arrays.sort(a);
for(i=0;i<a.lengh;i++)
System.out.println(a[i]+" ");
}
}
如果调用方法的话就更好了,你自己琢磨.
public class C123{
public static void main(String args[]){
int a=34,b=62,c=5;,smallest;
sort3(a,b,c);}
static void sort3(){
int temple;
if(x>y){temple=x;x=y;y=temple;}
if(x>z){temple=x;x=z;z=temple;}
if(y>z){temple=y;y=z;z=temple;}
System.out.println("Sorted:"+x+","+y+","+z);
return;
}
}
//第二种简单方法:
import java.util.*;
class ArraySort{
public static void main(String args[]){
int a[]={,23,64,25};
Arrays.sort(a);
for(i=0;i<a.lengh;i++)
System.out.println(a[i]+" ");
}
}
如果调用方法的话就更好了,你自己琢磨.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//[1]双循环排序
public void sort(int[] num) throws Exception
{
int temp=0;
for(int i=0;i<num.length;i++)
{
for(int j=i+1;j<num.length;j++)
{
if(num[i]<num[j])
{
temp=num[j];
num[j]=num[i];
num[i]=temp;
}
}
}
// 输出
for(int i=0;i<num.length;i++)
{
System.out.print(num[i]+",");
}
}
[2]单循环排序
/////////////////////////////
public void sort(int[] num) throws Exception
{
int findex=0;
int temp;
int eindex=num.length-1;
while(eindex>0)
{
if(findex<eindex)
{
if(num[findex]<num[eindex])
{
temp=num[eindex];
num[eindex]=num[findex];
num[findex]=temp;
}
++findex;
}else
{
--eindex;
findex=0;
}
}
//输出
for(int i=0;i<num.length;i++)
{
System.out.print(num[i]+",");
}
}
把三个数放到数组中,调用函数即可。
public void sort(int[] num) throws Exception
{
int temp=0;
for(int i=0;i<num.length;i++)
{
for(int j=i+1;j<num.length;j++)
{
if(num[i]<num[j])
{
temp=num[j];
num[j]=num[i];
num[i]=temp;
}
}
}
// 输出
for(int i=0;i<num.length;i++)
{
System.out.print(num[i]+",");
}
}
[2]单循环排序
/////////////////////////////
public void sort(int[] num) throws Exception
{
int findex=0;
int temp;
int eindex=num.length-1;
while(eindex>0)
{
if(findex<eindex)
{
if(num[findex]<num[eindex])
{
temp=num[eindex];
num[eindex]=num[findex];
num[findex]=temp;
}
++findex;
}else
{
--eindex;
findex=0;
}
}
//输出
for(int i=0;i<num.length;i++)
{
System.out.print(num[i]+",");
}
}
把三个数放到数组中,调用函数即可。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询