提示:你过去写得最好的一段代码是什么? 请用代码块贴出来
例如:
public class RotateTwo {
public static void main(String[] args) {
int[][] A = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
int n = 3;
int[][] B = new int[n][n];
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
B[n - 1 - j][i] = A[i][j];
//A[0][0]-->B[2][0]
//A[0][1]-->B[1][0]
}
}
ArrayUtil.printArray(B);
}
}
---
## 憧憬
1. 希望可以继续把写作这一个好习惯保持下去,写出更优质的文章。
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/8143835503e54c0c9e83c6cdd13496a2.png)