I
IcanhasChockos
Java:
import javax.swing.JOptionPane;
public class axxx
{
public static void main (String args [])
{
String text = "";
for(int i = 1; i<5; i++)
import javax.swing.JOptionPane;
public class Test4
{
public static void main (String args [])
{
String text = "";
for(int i = 1; i<5; i++)
{
for(int j = 1; j<5;j++)
{
if(j==2)
{
text = text + "Reindls";
}
}
text = text + "Code";
}
System.out.println(text);
String RohrlängeCM = JOptionPane.showInputDialog("Bitte die Rohrlänge in CM angeben");
int Laenge=Integer.parseInt(RohrlängeCM);
String RohrbreiteCM = JOptionPane.showInputDialog("Bitte die Rohrbreite in CM angeben");
int Breite=Integer.parseInt(RohrbreiteCM);
String RohrverschnittCM = JOptionPane.showInputDialog("Bitte den Rohrverschnitt in CM angeben");
int Verschnitt=Integer.parseInt(RohrverschnittCM);
String RohrrestCM = JOptionPane.showInputDialog("Bitte den Rohrrest in CM angeben");
int Rest=Integer.parseInt(RohrrestCM);
System.out.println(Laenge);
System.out.println(Breite);
System.out.println(Verschnitt);
System.out.println(Rest);
}
}