wtyblm


私信TA

用户名:dotcpp0804994

访问量:51

签 名:

等  级
排  名 26972
经  验 563
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章



解题思路: 一般用多层嵌套循环来实现输出。


注意事项: 当输出的等腰三角形结构比较固定时,用这种方法可以不需要多层嵌套循环,直接通过setw()与setfill()配合使用来控制空格和字符的数量。

但如果有结构变动或增加了特殊输出要求(如某些行单独样式),则使用嵌套循环会更加方便。



参考代码:


#include <iomanip>

#include <iostream>

using namespace std;

int main() {

   char x;

   cin>>x;

   cout << setfill(' ') << setw(3) << x << endl;

   cout << " " << setfill(x) << setw(4) << " " << endl;

   cout << setfill(x) << setw(5) << x << endl;

}




扩展到已知底边长度的等腰三角形(可以不需要高度,高度能通过底边长度算出来)


#include <iomanip>

#include <iostream>

using namespace std;


int main() {

   char x;

   int base;


   cout << "请输入一个字符:";

   cin >> x;

   cout << "请输入底边长度(奇数):";

   cin >> base;


   // 检查底边长度是否为奇数

   if (base % 2 == 0) {

       cout << "底边长度必须是奇数。" << endl;

       return 1;

   }


   // 计算高度

   int height = (base + 1) / 2;


   // 使用公式输出每一行

   for (int i = 1; i <= height; ++i) {

       int spaces = (base - (2 * i - 1)) / 2;  // 空格数

       int char_width = 2 * i - 1;              // 每行字符宽度


       cout << setfill(' ') << setw(spaces) << "" // 输出空格

            << setfill(x) << setw(char_width) << x << endl; // 输出字符

   }


   return 0;

}



 

0.0分

0 人评分

  评论区

  • «
  • »