我的输出应该是四个三角形和一个金字塔。我设法获得了四个三角形,但无法弄清金字塔。任何帮助都会很棒。 (我还必须使用setw和setfill)。
输出是左对齐的三角形,然后左上对齐。 右对齐的三角形,然后右对齐的三角形倒置。
这是我目前的输出:
#include <iostream>
#include <iomanip>
using namespace std;
//setw(length)
//setfill(char)
int height; //Number of height.
int i;
int main()
{
cout << "Enter height: ";
cin >> height;
//upside down triangle
for (int i=height; i>=1; i--){ //Start with given height and decrement until 1
cout << setfill ('*') << setw((i)) <<"*";
cout << "\n";
}
cout<< "\n"; //line break between
//rightside up triangle
for (int i=1; i<=height; i++){ //Start with 1 and increment until given height
cout << setfill ('*') << setw((i)) <<"*";
cout << "\n";
}
cout<< "\n";
//right aligned triangle
for (int i=1; i<=height; i++){ //Start with 1 and increment until given height
cout << setfill (' ') << setw(i-height) << " ";
cout << setfill ('*') << setw((i)) <<"*";
cout << "\n";
}
cout<< "\n";
//upside down/ right aligned triangle
for (int i=height; i>=1; i--){ //Start with given height and decrement until 1
cout << setfill (' ') << setw(height-i+1) << " ";
cout << setfill ('*') << setw((i)) <<"*";
cout << "\n";
}
cout<< "\n";
//PYRAMID
for (int i=1; i<=height; i++){ //Start with 1 and increment until given height
cout << setfill (' ') << setw(height-i*3) << " "; //last " " is space between
cout << setfill ('*') << setw((i)) <<"*";
cout << "\n";
}
}//end of main
答案 0 :(得分:0)
当您绘制金字塔时,对setfill('*')
的调用将否决对前一行setfill(' ')
的调用。 每行只能有一个填充字符集。
您可以尝试用“手”“画”星号,如下所示:
for (int i = 1; i <= height; i++) {
cout << setfill (' ') << setw(height - ((i - 1) * 2 + 1) / 2);
for (int j = 0; j < (i - 1) * 2 + 1; j++)
cout << '*';
cout << "\n";
}
答案 1 :(得分:0)
在开始考虑如何实现它之前,最好定义所需的输出。 假设您需要一个高度为5的金字塔,如您的示例所示。 这意味着顶行将有一个*。 在完美世界中,第二行将有两个,但很难在屏幕上实现。那么也许它可以有3个。 在这种情况下,高度5的最终结果将是:1,3,5,7和9 *。 (我试图在这里绘制但是没有成功,我建议你在任何文本编辑器中绘制它以帮助可视化最终结果)。
现在考虑实施: 请注意,重要的是*之前的填充空白量。之后的空白将自行发生。 *之前应该出现多少空白? 如果您尝试在文本编辑器中绘制金字塔,您会意识到它取决于底行的宽度和每个特定行中*的数量。 此外,如果你仔细观察空白形成一个三角形......
添加: 只是为了让您知道 - 如果您选择将每个后续行中的*数量增加2而不是一个,那么您的原始方法也会起作用。
int BottomRowWidth = 1 + 2 * (height - 1);
int BlankNumber = (BottomRowWidth - 1) / 2;
int row, width;
for (row = 1, width =1; (row <= height); row++, width = width+2, BlankNumber--)
{
if (BlankNumber > 0)
{
cout << setfill(' ') << setw(BlankNumber) << " ";
}
cout << setfill('*') << setw(width) << "*";
cout << endl;
}