First draft of a gaptext (ineficant i think)

This commit is contained in:
Sage Burger 2023-08-20 17:01:23 +02:00
parent a9e1700ed2
commit bb2efe0de5
2 changed files with 24 additions and 4 deletions

Binary file not shown.

View file

@ -32,15 +32,35 @@ public class Testcode {
// Display a popup dialog and get user input // Display a popup dialog and get user input
String a = JOptionPane.showInputDialog("Please enter a verb (-ing):"); String a = JOptionPane.showInputDialog("Please enter a verb (-ing):");
String b = JOptionPane.showInputDialog("Please enter a location:"); String b = JOptionPane.showInputDialog("Please enter a location:");
String c = JOptionPane.showInputDialog("Please enter a color:");
String d = JOptionPane.showInputDialog("Please enter an object in that color:");
String e = JOptionPane.showInputDialog("Please enter a diffrent color:");
String f = JOptionPane.showInputDialog("Please enter an object in that color:");
String g = JOptionPane.showInputDialog("Please enter an adjective:");
String h = JOptionPane.showInputDialog("Please enter an object");
if ((a == null || a.trim().isEmpty()) && (b == null || b.trim().isEmpty())) { if ((a == null || a.trim().isEmpty()) && (b == null || b.trim().isEmpty())) {
System.out.println("No words entered or both canceled."); System.out.println("Missing word(s) or canceled.");
} else if (a == null || a.trim().isEmpty()) { } else if (a == null || a.trim().isEmpty()) {
System.out.println("The verb was not entered or canceled."); System.out.println("Missing word(s) or canceled.");
} else if (b == null || b.trim().isEmpty()) { } else if (b == null || b.trim().isEmpty()) {
System.out.println("The location was not entered or canceled."); System.out.println("Missing word(s) or canceled.");
} else if (c == null || c.trim().isEmpty()) {
System.out.println("Missing word(s) or canceled.");
} else if (d == null || d.trim().isEmpty()) {
System.out.println("Missing word(s) or canceled.");
} else if (e == null || e.trim().isEmpty()) {
System.out.println("Missing word(s) or canceled.");
} else if (f == null || f.trim().isEmpty()) {
System.out.println("Missing word(s) or canceled.");
} else if (g == null || g.trim().isEmpty()) {
System.out.println("Missing word(s) or canceled.");
} else if (h == null || h.trim().isEmpty()) {
System.out.println("Missing word(s) or canceled.");
} else { } else {
System.out.println("They were " + a + " throw a " + b ); System.out.println("They where " + a + " throw a " + b + ". They're eyes where ");
System.out.println(c + " as the " + d + " They're hair as " + e + " as " + f + ".");
System.out.println("It was a " + g + " day, after a long journey they finally found their " + h);
} }
} }
} }