题解 1442: 蓝桥杯2013年第四届真题-打印十字图

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

通俗易懂C++

摘要:#include<iostream> using namespace std; // 因为n最大不超过30,足够用 char a[150][150]; void hua(int m,int t……

1442-打印十字图

摘要:```cpp #include using namespace std; char a[136][136]; //数组大小5+4*n(0……

C++ 究极三目运算符

摘要:解题思路:注意事项:参考代码:#include<cstring>#include<stdio.h>int main(){     int n,t,k,j,i=1;char c[124][124];  ……

打印十字图--递归法(python)

摘要: 注意: ##### 1. printline函数内部打印时不能有换行符,因为要进行递归,换行单独留在主函数里 ##### 2. 全图最外层四个角需要特殊处理 ```python def……