blikk info infothek forum galerie sitemap

Drei Zahlen in JAVA

zur Aufgabenstellung

package wiki;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

public class Grosse {

/**

* @param args

*/

public static void main(String[] args) {

//by Alexander Broll

BufferedReader eingabe = new BufferedReader(new InputStreamReader(

System.in));

String zahl[] = new String[3];

System.out.println("Geben sie bitte drei Zahlen ein");

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

try {

zahl[i] = eingabe.readLine();

} catch (IOException io) {

System.out.println("Es gab ein Problem");

}

}

int zahl1 = Integer.parseInt(zahl[0]);

int zahl2 = Integer.parseInt(zahl[1]);

int zahl3 = Integer.parseInt(zahl[2]);

if((zahl1>zahl2) && (zahl1>zahl3)){

System.out.println("Die Zahl " + zahl1 + " ist die größte!");

}

if((zahl2>zahl1) && (zahl2>zahl3)){

System.out.println("Die Zahl " + zahl2 + " ist die größte!");

}

if((zahl3>zahl2) && (zahl3>zahl1)){

System.out.println("Die Zahl " + zahl3 + " ist die größte!");

}

}

}

nach oben