文章
13
粉丝
76
获赞
5
访问
7.8k
AC了,居然要一百多行......
#include <bits/stdc++.h>
using namespace std;
int a[6][6];
void up(){
for(int j = 1; j <= 4; j++){
for(int i = 3; i >= 1; i--){
for(int k = 1; k <= i; k++){
if(0 == a[k][j]){
for(int h = k; h <= 3; h++){
a[h][j] = a[h + 1][j];
if(3 == h){
a[4][j] = 0;
}
}
 ...
登录后发布评论
暂无评论,来抢沙发