about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/4/LongestRun.java
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 10:34:58 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:00:00 +0700
commit67393f42f41ab92219deb549f711121c4dab845b (patch)
treeebd0eb6c8a3d3bd69937312179aeaf273ea29c80 /usth/ICT2.2/labwork/4/LongestRun.java
parentb38d9929f7a015b56b847fde7e83f814f354497e (diff)
downloadcp-67393f42f41ab92219deb549f711121c4dab845b.tar.gz
[usth/ICT2.2] Object Oriented Programming
Diffstat (limited to 'usth/ICT2.2/labwork/4/LongestRun.java')
-rw-r--r--usth/ICT2.2/labwork/4/LongestRun.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/4/LongestRun.java b/usth/ICT2.2/labwork/4/LongestRun.java
new file mode 100644
index 0000000..74c18c7
--- /dev/null
+++ b/usth/ICT2.2/labwork/4/LongestRun.java
@@ -0,0 +1,30 @@
+import java.util.Scanner;
+
+class LongestRun
+{
+  public static void main(String... args)
+  {
+    var scanner = new Scanner(System.in);
+    Integer number = null;
+    Integer length = null;
+    Integer n = null, len = null;
+
+    while (scanner.hasNextInt())
+      {
+        Integer i = scanner.nextInt();
+        if (i == n)
+          {
+            len++;
+            continue;
+          }
+        if (length == null || len > length)
+          {
+            number = n;
+            length = len;
+          }
+        n = i;
+        len = 1;
+      }
+    System.out.printf("Longest run: %d consecutive %d\n", number, length);
+  }
+}