gpt4 book ai didi

c - 重构此 C 代码的最佳方法? CS50 - mario.c(更多)

转载 作者:行者123 更新时间:2023-11-30 20:58:30 27 4
gpt4 key购买 nike

所以我正在学习 cs50 类(class)并从 pset 1 中解决 mario.c 更多问题

我实际上用 3 个 for 循环解决了它,但我想用 2 个循环重构它,我想出了这段代码,为“height: 5”提供了以下解决方案

Result:
# #
## ##
### ###
#### ####
##### #####

#include <stdio.h>

int main(void)
{

int side = 5;
int max = side + 2;

for (int i = 1 ; i <= side ; i++)
{
int j = 1;
while(j != max+1)
{
if(j <= side-i)
{
printf(" ");
j++;
}
else if(j > side-i && j < side+1)
{
printf("#");
j++;
}
else if(j == side+1)
{
printf(" ");
j++;
}
else
{
printf("#");
j++;
}
}
max++;
printf("\n");
}
}

我想知道你们是否可以向我展示一个更优雅的解决方案,因为我认为这太......重复了。

另外,是否可以使用 switch case 来代替这么多 else if ?尝试这样做,但代码没有为 j 获取 bool 值:(

提前致谢! :)

最佳答案

如果您知道高度的上限,则可以在单个循环中完成。

喜欢:

int main(void) {
char s[] = "#############################################";
char f[32];

int n = 5; // height

sprintf(f, "%%%ds %%s", n); // Create a format string like "%5s %s"
char* p = s + strlen(s) - 1; // Let p point to the last char in s

for(int i=0; i<n; i++) // Loop n times
{
printf(f, p, p);
printf("\n");
p--; // Increase the number of # that p points to
}
return 0;
}

注意:如果您不知道高度的上限,您仍然可以使用此方法,但 s 必须动态分配。

关于c - 重构此 C 代码的最佳方法? CS50 - mario.c(更多),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52134285/

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