标签:一点 char param nbsp type out 0ms style div
给定一个字符,用它构造一个底边长5个字符,高3个字符的等腰字符三角形。
*
* *** *****
#include <iostream> #include <algorithm> #include <stdio.h> #include <string> #include <ctype.h> using namespace std; int main() { char a; scanf("%c", &a); for(int i = 1; i <=3; i++) { int num = 2*i-1; int kong = (5-num)/2; for(int j = 1; j <= kong; j++) cout << " "; for(int j = 1; j <= num; j++) cout << a; for(int j = 1; j <= kong; j++) cout << " "; cout << endl; } return 0; }
采用了麻烦一点的方法,为了更有拓展性
标签:一点 char param nbsp type out 0ms style div
原文地址:http://www.cnblogs.com/QingHuan/p/7010352.html