import java.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Kubus {
public static void main(String[] args) {
//1
BufferedReader Console = new BufferedReader(new InputStreamReader(System.in));
double quadrat, wurzel, kubus;
System.out.println("Tabelle zu Wurzeln,Quartate und Kuben von 1 bis 20n");
System.out.println("ZahltQuadrattKubustWurzel");
try{
//2
for (int i = 1; i <= 20; i++)
{
quadrat = Math.pow(i, 2);
wurzel = Math.sqrt(i);
kubus = Math.pow(i, 3);
//3
System.out.println(i + "t" + quadrat + "t" + kubus + "t" + wurzel);
}
Console.read();
}catch ( Exception e){
}
}
}
|