import java.util.Scanner;
public class kelasArray{
public static void main(String[] asd){
Scanner voker=new Scanner(System.in);
int baris,kolom;
int j=1;
int k=1;
System.out.print("Masukkan baris: ");
baris= voker.nextInt();
System.out.print("Masukkan kolom: ");
kolom= voker.nextInt();
// Total number of rows it will iterate
for (j=1; j<=baris; j++) {
System.out.print(+j+ "-"+k+ " ");
System.out.print(" ");
// total number of columns it will iterate
for (k=1; k<=kolom; k++) {
System.out.print(+j+ "-"+k+ " ");
System.out.print(" ");
}
k=0;
System.out.println(" ");
}
}
}
所以这是我的代码,我尝试在每列和每行添加一个mathrandom。
问题是,我在哪里放置我的数学?首先是为了什么?或者第二个?
我已添加此代码
int number=(int)(Math.random()*2);
System.out.println(+number);
在第二个,但输出它不像我想要的。
任何?
所以这里看起来像