gpt4 book ai didi

c++ - 在 C++ 中用给定的字母打印三角形

转载 作者:太空狗 更新时间:2023-10-29 19:57:30 25 4
gpt4 key购买 nike

我想用给定的字母打印一个三角形。例如,如果我输入 D,程序应该返回:

     A
AB
ABC
ABCD

到目前为止,我已经设法打印了示例中给定字母之前的所有字母,但是如您所见,这种方法并不是很有效,因为我需要对所有 26 种情况都这样做,因为英文字母表是 26 个字符。有什么方法可以优化我的代码吗?

#include <iostream>

using namespace std;

int main() {
char i;
cout << "Enter char ";
cin >> i;
int c = static_cast<int>(i);
if (65 < c) {
cout << "A";
cout << endl;
}
if (66 < c) {
cout << "AB";
cout << endl;
}
if (67 < c) {
cout << "ABC";
cout << endl;
}

for (int i = 64; i < c; i++) {
cout << static_cast<char>(i + 1);
}

return 0;
}

最佳答案

您肯定需要努力理解循环。这个工作得很好,它甚至对输入的内容进行了一些检查,并最终将小写字母转换为大写字母。

char first = 'A';
char last = 0;

cout << "Enter a char: ";
cin >> last;
fflush(stdin);
cout << "\n\n";

if ((last > 96) && (last < 123)) //97 to 122 are lower case letters
{
last -= 32; //32 is the delta between each lower case letter and its upper case "twin"
}

if ((last > 64) && (last < 91))
{
for (char i = 65; i <= last; i++)
{
for (char j = 65; j <= i; j++)
{
cout << j;
}
cout << "\n";
}
}
else
{
cout << "\nWrong character!!\n\n";
return 0;
}

关于c++ - 在 C++ 中用给定的字母打印三角形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33711767/

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