aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/csci1913/Java/lab4_strap012.java
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2020-01-30 16:55:04 -0600
committerRossTheRoss <mstrapp@protonmail.com>2020-01-30 16:55:04 -0600
commit175721a63b426355274fa9e8063f762020ab8362 (patch)
treecf2c1b33233d660c9f50de5e659b9343bb264984 /OLD/csci1913/Java/lab4_strap012.java
parentMake Python thing in Python (diff)
downloadhomework-175721a63b426355274fa9e8063f762020ab8362.tar
homework-175721a63b426355274fa9e8063f762020ab8362.tar.gz
homework-175721a63b426355274fa9e8063f762020ab8362.tar.bz2
homework-175721a63b426355274fa9e8063f762020ab8362.tar.lz
homework-175721a63b426355274fa9e8063f762020ab8362.tar.xz
homework-175721a63b426355274fa9e8063f762020ab8362.tar.zst
homework-175721a63b426355274fa9e8063f762020ab8362.zip
R E A R R A N G E
Diffstat (limited to 'OLD/csci1913/Java/lab4_strap012.java')
-rw-r--r--OLD/csci1913/Java/lab4_strap012.java101
1 files changed, 101 insertions, 0 deletions
diff --git a/OLD/csci1913/Java/lab4_strap012.java b/OLD/csci1913/Java/lab4_strap012.java
new file mode 100644
index 0000000..de3f2f6
--- /dev/null
+++ b/OLD/csci1913/Java/lab4_strap012.java
@@ -0,0 +1,101 @@
+// DRIVER. The MAIN method has tests for your class ZILLION. Each test has a
+// comment that shows what the test should print if your code is correct. It
+// also has the number of points you will receive if the test is successful.
+// These tests are worth a total of 25 points.
+
+class Zillion {
+ private int s;
+ private int[] number;
+ public Zillion(int size) {
+ number = new int[size];
+ s = size;
+ }
+ public void increment(){
+ int n = 0;
+ boolean isCorrect = false;
+ while (isCorrect==false) {
+ number[n]+=1;
+ if (number[n] >= 10) {
+ number[n]=0;
+ if (n<(s-1)) {
+ n+=1;
+ }
+ else {
+ isCorrect = true;
+ }
+ }
+ else {
+ isCorrect=true;
+ }
+ }
+
+ }
+ public String toString(){
+ String test = "";
+ for (int n=(s-1); n>=0; n-=1) {
+ test+=number[n];
+ }
+ return test;
+ }
+}
+
+class Driver
+{
+ public static void main(String[] args)
+ {
+ Zillion z = new Zillion(2);
+ System.out.println(z); // 00 2 points
+
+ z.increment();
+ System.out.println(z); // 01 2 points
+
+ z.increment();
+ System.out.println(z); // 02 2 points
+
+ z.increment();
+ z.increment();
+ z.increment();
+ z.increment();
+ z.increment();
+ z.increment();
+ z.increment();
+ z.increment();
+
+ System.out.println(z); // 10 2 points
+ z.increment();
+ System.out.println(z); // 11 2 points
+
+ z = new Zillion(4);
+ System.out.println(z); // 0000 2 points
+
+ for (int j = 1; j <= 999; j += 1)
+ {
+ z.increment();
+ }
+ System.out.println(z); // 0999 2 points
+
+ z.increment();
+ System.out.println(z); // 1000 2 points
+
+ for (int j = 1; j <= 999; j += 1)
+ {
+ z.increment();
+ }
+ System.out.println(z); // 1999 2 points
+
+ z.increment();
+ System.out.println(z); // 2000 2 points
+
+ for (int j = 1; j <= 7999; j += 1)
+ {
+ z.increment();
+ }
+ System.out.println(z); // 9999 2 points
+
+ z.increment();
+ System.out.println(z); // 0000 2 points
+
+ z.increment();
+ System.out.println(z); // 0001 1 point
+ }
+}