Skip to content

Instantly share code, notes, and snippets.

@asolntsev
Created March 31, 2019 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asolntsev/b3a4a1ea20f7f2e0be904b53de32f32d to your computer and use it in GitHub Desktop.
Save asolntsev/b3a4a1ea20f7f2e0be904b53de32f32d to your computer and use it in GitHub Desktop.
public class kt_6_1 {
public static void main(String[] args) {
int esimene[][] = new int[4][4];
int teine[][] = new int[4][4];
int kolmas[][] = new int[4][4];
for (int x = 0; x < 4; x++) {
for (int y = 0; y < 4; y++) {
esimene[y][x] = (int) (Math.random() * 100);
teine[y][x] = (int) (Math.random() * 100);
kolmas[y][x] = (int) (Math.random() * 100);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment