gpt4 book ai didi

c - 乘法字符串

转载 作者:行者123 更新时间:2023-11-30 19:59:44 24 4
gpt4 key购买 nike

我想制作一行星星,每行包含的星星多于前一行。我的问题是我不知道如何在 C 中乘以字符串。

#include<stdio.h>
#include<conio.h>
main()
{
int max = 10
for (int i = 1; i <= max; ++i){
printf("*"*(2 * i - 1);
}

}

最佳答案

您可以重复打印所需数量的字符串。

#include<stdio.h>
#include<conio.h>
main()
{
int max = 10; // a semicolon is added to make it compile
for (int i = 1; i <= max; ++i){
for (int j = 0; j < (2 * i - 1); j++){ // repeat (2 * i - 1) times
printf("*");
}
printf("\n"); // separate lines
}

}

我尊重原始代码,所以有些地方不好(毫无意义,包括非标准的conio.h和非标准的main()定义(而不是 int main(void))) 仍然存在。

关于c - 乘法字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54969707/

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