题解 1571: 蓝桥杯算法提高VIP-输出正反三角形

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

筛选

python-输出正反三角形

摘要:解题思路:注意事项:参考代码:def f(n,m):       for i in range(1,n+1):           print('{:>{}}{:>{}}'.for……

继续摆烂,输出正反三角形

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; ……