-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRandomWords.java
More file actions
57 lines (47 loc) · 1.35 KB
/
RandomWords.java
File metadata and controls
57 lines (47 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package interfaces;
import java.nio.*;
import java.util.*;
/**
* RUN:
* javac interfaces/RandomWords.java && java interfaces.RandomWords
* OUTPUT:
* Yazeruyac
* Fowenucor
* Goeazimom
* Raeuuacio
* Nuoadesiw
* Hageaikux
* Ruqicibui
* Numasetih
* Kuuuuozog
* Waqizeyoy
*/
public class RandomWords implements Readable {
private static Random rand = new Random(47);
private static final char[] capitals = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray();
private static final char[] lowers = "abcdefghijklmnopqrstuvwxyz".toCharArray();
private static final char[] vowels = "aeiou".toCharArray();
private int count;
public RandomWords(int count) {
this.count = count;
}
public int read(CharBuffer cb)
{
if (count-- == 0) {
return -1;
}
cb.append(capitals[rand.nextInt(capitals.length)]);
for(int i = 0; i < 4; i++) {
cb.append(vowels[rand.nextInt(vowels.length)]);
cb.append(lowers[rand.nextInt(lowers.length)]);
}
cb.append(" ");
return 10;
}
public static void main(String[] args) {
Scanner s = new Scanner(new RandomWords(10));
while (s.hasNext()) {
System.out.println(s.next());
}
}
}