Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class AlfabetMatrix {
public AlfabetMatrix() {
}
public static void main(String[] args) {
final int MYARRAYSIZE = 26;
int z;
char myArray[][] = new char[MYARRAYSIZE][MYARRAYSIZE];
for (int y = 65; y< 65 + MYARRAYSIZE; y++)
for (int x = 0; x<MYARRAYSIZE; x++)
{
z = y + x;
if (z >= 65+26)
z=z-26;
myArray[y-65][x] = (char)(z);
}
for (int y=0; y<MYARRAYSIZE; y++)
{
for (int x=0; x<MYARRAYSIZE; x++)
System.out.print(myArray[y][x]);
System.out.println();
}
}
}