我想用簡單的循環和數組創建一個簡單的java程序。它應該是乘法表。java中的簡單乘法數組
如果行數是3,列數是5,那麼它應該顯示行,列,並在矩陣內應該給行和列的乘法。輸出應該看起來像這樣。
1 2 3 4 5
1 1 2 3 4 5
2 2 4 6 8 10
3 3 6 9 12 15
這個我想創建簡單的循環。我是新來的Java,所以我無法弄清楚我該如何做到這一點。請讓我知道。
我已經完成了代碼,直到這裏。
import java.util。*;
class cross_multiplication
{
public static void main(String a[])
{
System.out.println("How many rows required? : ");
Scanner in1 = new Scanner(System.in);
int num_rows = in1.nextInt();
System.out.println("How many cols required? : ");
Scanner in2 = new Scanner(System.in);
int num_cols = in2.nextInt();
//int arr1 [] = new int[num_rows];
//int arr2 [] = new int[num_cols];
for(int i=0;i<num_rows;i++)
{
if (i==0)
{
System.out.print("");
}
else
{
System.out.print(i);
}
System.out.print("\t");
}
}
}
感謝
使用數組和循環然後問你以後試過 –
你有沒有試過任何代碼? – sanbhat
不知道爲什麼你會需要一個數組,但一個簡單的複合'for-loop'應該這樣做。 – MadProgrammer