求java编程,要求输入三个数后,输出这三个数中最大的数

如题所述

public class Intergers{
    public static void main(String[] args){
        java.util.Scanner sc = new java.util.Scanner(System.in);
       try{
           int[] arr = new int[3];
           for(int i = 0; i < arr.length; i++){
               System.out.println("请输入第"+(i+1)+"个数");
               arr[i] = sc.nextInt();
           }
           int max = 0;
           for(int i = 0; i < arr.length; i++){
               if(max < arr[i]){
                   max = arr[i];
               }
           }
           System.out.println("最大数:" + max);
       }catch(Exception e){
         System.err.println("您输入的不是整数...");
      }
    }
}
温馨提示:答案为网友推荐,仅供参考
第1个回答  2014-03-27
package zhidao;

import java.util.Scanner;

public class Quadratic
{
public static void main ( String[] args )
{
String tip = "输入三个数, 逗号分开:";
System.out.println (tip);
Scanner scanner = new Scanner (System.in);
String line = null;
while (scanner.hasNextLine ())
{
line = scanner.nextLine ().trim ();
if (!line.matches ("^(\\+|\\-)?\\d+\\s*,\\s*(\\+|\\-)?\\d+\\s*,\\s*(\\+|\\-)?\\d+$"))
{
System.err.println (tip);
}
else
{
String[] temp = line.split ("\\s*,\\s*");
for ( int i = 1; i < temp.length; i++ )
{
int j;
String str1 = temp[i].startsWith ("+") ? temp[i].substring (1) : temp[i];
int tmp = Integer.parseInt (str1);
for ( j = i; j > 0; j-- )
{
String str2 = temp[j - 1].startsWith ("+") ? temp[j - 1].substring (1) : temp[j - 1];
if (Integer.parseInt (str2) < tmp)
{
temp[j] = temp[j - 1];
}
else
{
break;
}
}
temp[j] = String.valueOf (tmp);
}
System.out.println ("最大的数是:" + temp[0]);
}
}
}
}

第2个回答  2014-03-27
第一步,先接收到输入的三个函数;第二步进行排序(由大到小);第三步,取出第一个数字就是最大的数字
第3个回答  2014-03-27
public test {
public static void main(String[] args){
int a,b,c;
// 输入三个数,分别用a,b,c获取,
Scanner ina = new Scanner(System.in);
int a = in.nextLine();
Scanner inb = new Scanner(System.in);
int b = in.nextLine();
Scanner inc = new Scanner(System.in);
int c = in.nextLine();
//比较大小
int big = a > b?a:b;
int maxBig = big > c?big:c;
System.out.println(maxBig);
}
}

没有在平台运行,直接手写的,有些包需要你自己导入。本回答被网友采纳
第4个回答  2014-03-27
这不就是排序的问题吗?你可以采用小鱼冒泡法,比较法
相似回答