Browse Source

Update README-NumberUtilities.md

Git-Leon 6 years ago
parent
commit
81e0240ed3
No account linked to committer's email
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      README-NumberUtilities.md

+ 7
- 7
README-NumberUtilities.md View File

24
     int stop = 11;
24
     int stop = 11;
25
     
25
     
26
     // : When
26
     // : When
27
-    String outcome = StringLoops.getRange(stop);
27
+    String outcome = NumberUtilities.getRange(stop);
28
     
28
     
29
     // : Then
29
     // : Then
30
     System.out.println(outcome);
30
     System.out.println(outcome);
59
     int stop = 11;
59
     int stop = 11;
60
     
60
     
61
     // : When
61
     // : When
62
-    String outcome = StringLoops.getRange(start, stop);
62
+    String outcome = NumberUtilities.getRange(start, stop);
63
     
63
     
64
     // : Then
64
     // : Then
65
     System.out.println(outcome);
65
     System.out.println(outcome);
91
     int step = 5;
91
     int step = 5;
92
     
92
     
93
     // : When
93
     // : When
94
-    String outcome = StringLoops.getRange(min, max, step);
94
+    String outcome = NumberUtilities.getRange(min, max, step);
95
     
95
     
96
     // : Then
96
     // : Then
97
     System.out.println(outcome);
97
     System.out.println(outcome);
130
     int stop = 20;
130
     int stop = 20;
131
     
131
     
132
     // : When
132
     // : When
133
-    String outcome = StringLoops.getOddNumbers(min, max);
133
+    String outcome = NumberUtilities.getOddNumbers(min, max);
134
     
134
     
135
     // : Then
135
     // : Then
136
     System.out.println(outcome);
136
     System.out.println(outcome);
158
     int stop = 20;
158
     int stop = 20;
159
     
159
     
160
     // : When
160
     // : When
161
-    String outcome = StringLoops.getOddNumbers(min, max);
161
+    String outcome = NumberUtilities.getOddNumbers(min, max);
162
     
162
     
163
     // : Then
163
     // : Then
164
     System.out.println(outcome);
164
     System.out.println(outcome);
199
     int stop = 20;
199
     int stop = 20;
200
     
200
     
201
     // : When
201
     // : When
202
-    String outcome = StringLoops.getOddNumbers(min, max);
202
+    String outcome = NumberUtilities.getOddNumbers(min, max);
203
     
203
     
204
     // : Then
204
     // : Then
205
     System.out.println(outcome);
205
     System.out.println(outcome);
238
     int exponent = 2;
238
     int exponent = 2;
239
     
239
     
240
     // : When
240
     // : When
241
-    String outcome = StringLoops.getOddNumbers(min, max);
241
+    String outcome = NumberUtilities.getOddNumbers(min, max);
242
     
242
     
243
     // : Then
243
     // : Then
244
     System.out.println(outcome);
244
     System.out.println(outcome);