📄 sort.java
字号:
public class Sort{
public void sort(int shape[][][]){
int temp;
for(int i=0;i<19;i++)
for(int j=0;j<19;j++){
for(int h=1;h<=4;h++){
for(int w=3;w>=h;w--){
if(shape[i][j][w-1]<shape[i][j][w]){
temp=shape[i][j][w-1];
shape[i][j][w-1]=shape[i][j][w];
shape[i][j][w]=temp;
}
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -