about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/1/Hellos.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/1/Hellos.java')
-rw-r--r--usth/ICT2.2/labwork/1/Hellos.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/1/Hellos.java b/usth/ICT2.2/labwork/1/Hellos.java
new file mode 100644
index 0000000..206ac58
--- /dev/null
+++ b/usth/ICT2.2/labwork/1/Hellos.java
@@ -0,0 +1,14 @@
+class Hellos
+{
+  private static final String[] TH = {"th", "st", "nd", "rd", "th",
+                                      "th", "th", "th", "th", "th"};
+
+  public static void main(String... args)
+  {
+    int n = Integer.parseInt(args[0]);
+    for (int i = 1; i <= n; ++i)
+      // Before one says this defeat the purpose of the section,
+      // the tertiary operator IS conditional.
+      System.out.println(i + TH[i % 100 / 10 == 1 ? 7 : i % 10] + " Hello");
+  }
+}