P1205 [USACO1.2] 方块转换 Transformations(C++)

#include 
using namespace std;

//旋转90
bool rotate_90(char a[10][10],int n){
    char b[10][10];
    for(int i=0;i>n;
    char a[10][10];
    char b[10][10];
    for(int i=0;i>a[i][j];
        }
    }
    for(int i=0;i>b[i][j];
        }
    }
    if(rotate_90(a,n)){         //旋转90度
        int sign=1;
        for(int i=0;i 
 

你可能感兴趣的:(算法,c++,数据结构)