Lösungsvorschlag Exkurs Math - Aufgabe 3

Aus ComeniusWiki
Wechseln zu: Navigation, Suche

public void zylinder(){
 Scanner eingabe = new Scanner (System.in);
System.out.print("Geben sie den Radius der Kreisfläche ein: ");
double r= eingabe.nextInt();
System.out.print("Geben sie die Höhe des Zylinders ein: ");
double h=eingabe.nextInt();
double v=Math.floor(Math.pow(r,2)*Math.PI*h);
double o=Math.floor(2*Math.pow(r,2)*Math.PI+2*r*Math.PI*h);
System.out.println("Die Oberfläche des Zylinders beträgt "+o+" Das Volumen beträgt "+v+"");
}