|
|
|
|
|
|
|
|
|
|
|
package wiki;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Schaltjahr {
/**
* @param args
*/
public static void main(String[] args) {
//by Alexander Broll
BufferedReader eingabe = new BufferedReader(new InputStreamReader(
System.in));
String ein = "";
System. out.println("Geben sie bitte ein Jahr ein!(Schaltjahr oder nicht?)");
try {
ein = eingabe.readLine();
} catch (IOException io) {
System. out.println("Es gab ein Problem");
}
int zahl = Integer.parseInt(ein);
if (zahl % 4 != 0)
{
System. out.println("Es ist kein Schaltjahr!");
}
else if (zahl % 100 != 0)
{
System. out.println("Es ist ein Schaltjahr!");
}
else if (zahl % 400 == 0)
{
System. out.println("Es ist ein Schaltjahr");
}
else
{
System. out.println("Es ist kein Schaltjahr");
}
}
}
|
|
|
|
|
|
|
|
|
Letzte Änderung: 12.02.2007
© Pädagogisches Institut für die deutsche Sprachgruppe
- Bozen. 2000 -
|
|
|
|
|
|
|
|
|