0
"三角形"の乗算表を作成しようとしています。 15行10列あり、重複はありません。ループを使用している必要があります。私はこれを理解するのに苦労しています。私は余分な列が残っています。助けてください!三角形Java乗算表を作成しようとしています
Here is what it is supposed to look like
public class q2 {
public static void main(String[] args) {
final int jMax = 15;
final int iMax = 10;
System.out.println("");
System.out.print(" | ");
for (int column = 1; column <= iMax; column++)
System.out.print(column + "\t");
System.out.println();
System.out.print("____________________________________________________________________________");
System.out.println();
for (int i = 1; i <= jMax; i++)
{
if (i>9)
{
System.out.print(i + " | ");
}
else
System.out.print(i + " | ");
for (int row = 1; row <=i; row++) {
System.out.print(i*row + " ");
}
System.out.println();
}
}
}
現在はどうなっていますか? – Matt
完璧、今すぐに感謝の仕事! – Mike