if (shape.equals("diagonal")){
for (int row = 0; row <= size; row ++){
for (int col = 0 ; col < size; col ++ ){
if ( col % 4 == 0 ){
System.out.print("*");
} else {
System.out.print("$");
}
}
System.out.println();
}
}
*$$$*$$$*$$$*$$$*
$*$$$*$$$*$$$*$$$
$$*$$$*$$$*$$$*$$
same as it go down
私の目標は、上記のコードを印刷することであり、17 x 17 の出力が作成されるまで続きます。