私はこのコードを持っていますが、このように対角線を印刷しています...右上から左下に移動したかったのですが、それを回す方法はありますか?
*
*
*
*
*
コード:
class Diagonal {
public static void main(String args[]) {
int row, col;
String spaces = " ";
for( row = 1; row < 6; row++) {
System.out.println(spaces +"*");
spaces += " ";
}
}
}