|
|
|
|
|
|
|
|
|
|
|
package wiki;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class NotenUmrechnen {
/**
* @param args
*/
public static void main(String[] args) {
//by Alexander Broll
int note = 0;
BufferedReader eingabe = new BufferedReader(new InputStreamReader(System.in));
System. out.println("Geben Sie ihre Letzte Zeugnissnote ein!");
//Einlesen
try{
note = Integer.parseInt(eingabe.readLine());
}
catch(IOException io){
System. out.println("Es gab ein Problem");
}
if (note<5)
{
System. out.println("Deine Note ist nicht genügend!");
}
else if (note==5)
{
System. out.println("Deine Note ist nicht genügend!");
}
else if(note == 6)
{
System. out.println("Deine Note ist genügend!");
}
else if(note == 7)
{
System. out.println("Deine Note beträgt zufriedenstellend!");
}
else if (note== 8)
{
System. out.println("Deine Note ist gut!");
}
else if(note == 9)
{
System. out.println("Deine Note ist sehr gut!");
}
else if(note == 10)
{
System. out.println("Deine Note beträgt ausgezeichnet!");
}
}
}
|
|
|
|
|
|
|
|
|
Letzte Änderung: 12.02.2007
© Pädagogisches Institut für die deutsche Sprachgruppe
- Bozen. 2000 -
|
|
|
|
|
|
|
|
|