-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlpha.java
More file actions
46 lines (38 loc) · 801 Bytes
/
Alpha.java
File metadata and controls
46 lines (38 loc) · 801 Bytes
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
public class Alpha
{
public static void main (String[] args) {
char[][] table= new char[9][16];
for(int x = 0; x < table.length; x++)
{
for(int y = 0; y < table[x].length; y++)
{
table[x][y]='k';
}
}
for(int x = 0; x < table.length; x++)
{
for(int y = 0; y < table[x].length; y++)
{
System.out.print (table[x][y]);
}
System.out.println ();
}
System.out.println ("\n");
for(int x = 0; x < table.length; x++)
{
for(int y = 0; y < table[x].length; y++)
{
table[x][y]= (char)(Math.random()*26 + 97);
}
}
for(int x = 0; x < table.length; x++)
{
for(int y = 0; y < table[x].length; y++)
{
System.out.print (table[x][y]);
}
System.out.println ();
}
//lower = (char)(Math.random()*26 + 97);
}
}