gpt4 book ai didi

c++ - 打印空心直角三角形

转载 作者:行者123 更新时间:2023-11-30 03:19:07 28 4
gpt4 key购买 nike

我在使用此 C++ 代码时遇到问题。它应该打印一个空心直角等腰三角形,但只是一遍又一遍地打印星号,所以 for 循环似乎被卡住了。

#include "pch.h"
#include <string>
#include <iostream>

int main() {
int row;
std::string s = " ";
std::string a = " *";
int rows = 10;

for (int i = 0; i < rows; i++) {

if (i = 0) {
std::cout << a << std::endl;
}

while (i > 2 && i < rows) {
std::cout << a;

for (int pos = 0; pos < i; pos++) {
std::cout << s;
}

std::cout << a << std::endl;
}

std::cout << a << a << a << a << a << a << a << a << a << std::endl;

}
}

最佳答案

您的 while 循环条件永远不会变为假,并且您需要在这一行中使用比较 (==) 而不是赋值:

        if (i = 0) {

关于c++ - 打印空心直角三角形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54039184/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com