解题思路:
注意事项:
参考代码:
#include<iostream> #include<stdio.h> using namespace std; int main() { char t; cin >> t; for(int i = 1; i <= 3; i++) { for(int j = 3 - i; j > 0; j--) cout << " "; for(int k = 2 * i - 1; k > 0; k--) cout << t; cout << endl; } for(int i = 2; i > 0; i--) { for(int j = 3 - i; j > 0; j--) cout << " "; for(int k = 2 * i - 1; k > 0; k--) cout << t; cout << endl; } return 0; }
0.0分
5 人评分