This commit is contained in:
2025-12-28 21:05:06 +08:00
parent 5d09b15326
commit bdaedc135e
46 changed files with 485 additions and 38 deletions
@@ -0,0 +1,14 @@
import java.util.*;
public class P2989 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
for (int i = 0; i < n; i++) {
StringBuilder sb = new StringBuilder();
for (int j = 0; j < n; j++) sb.append('V');
System.out.println(sb.toString());
}
in.close();
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB