Difference between revisions of "Iterable Range Assignment"
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
=Code To Implement= | =Code To Implement= | ||
− | + | {{JavaToImplement|Ranges|minToMaxExclusive<br/>minToMaxExclusiveByStep|range.warmup}} | |
− | {{JavaToImplement|Ranges|minToMaxExclusive|range.warmup}} | + | |
+ | ==minToMaxExclusive(min, maxExclusive)== | ||
<nowiki>public static Iterable<Integer> minToMaxExclusive(int min, int maxExclusive)</nowiki> | <nowiki>public static Iterable<Integer> minToMaxExclusive(int min, int maxExclusive)</nowiki> | ||
+ | |||
+ | ==minToMaxExclusiveByStep(min, maxExclusive, step)== | ||
=Client= | =Client= |
Revision as of 02:34, 26 November 2022
Contents
Java
interface java.lang.Iterable<T>
interface java.util.Iterator<T>
Code To Implement
class: | Ranges.java | |
methods: | minToMaxExclusive minToMaxExclusiveByStep |
|
package: | range.warmup | |
source folder: | src/main/java |
minToMaxExclusive(min, maxExclusive)
public static Iterable<Integer> minToMaxExclusive(int min, int maxExclusive)
minToMaxExclusiveByStep(min, maxExclusive, step)
Client
class: | RangesClient.java | |
package: | range.client | |
source folder: | src/main/java |
The code:
for (int i : Ranges.minToMaxExclusive(4, 12)) { System.out.println(i); } System.out.println(); for (double d : Ranges.minToMaxExclusive(3, 7.1, 0.25)) { System.out.println(d); }
produces the output:
4 5 6 7 8 9 10 11 3.0 3.25 3.5 3.75 4.0 4.25 4.5 4.75 5.0 5.25 5.5 5.75 6.0 6.25 6.5 6.75 7.0
Test
class: | RangesTestSuite.java | |
package: | range.warmup | |
source folder: | src/test/java |