APL/APL2.1/TP1/grille.java

23 lines
615 B
Java
Raw Normal View History

2022-02-07 10:53:37 +01:00
public class grille {
public static void main(String[] args) {
for(int j = 0; j < Integer.parseInt(args[0]); j++) {
System.out.print("+");
for(int i = 0; i < Integer.parseInt(args[0]); i++) {
System.out.print("-+");
}
System.out.print("\n|");
for(int i = 0; i < Integer.parseInt(args[0]); i++) {
System.out.print(" |");
}
System.out.print("\n");
}
System.out.print("+");
for(int i = 0; i < Integer.parseInt(args[0]); i++) {
System.out.print("-+");
}
}
}