Closed. This question is off-topic。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
4年前关闭。
我一直在尝试输出为-
在单独的行中,但是Xcode在每行中显示5星。如何获得函数j的递减值?
至
请参见
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
4年前关闭。
我一直在尝试输出为-
*****
****
***
**
*
在单独的行中,但是Xcode在每行中显示5星。如何获得函数j的递减值?
#include <stdio.h>
int main()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=5;j>=1;j--)
{
printf("*");
}
printf("\n");
}
return 0;
}
最佳答案
更改
for(j = 5;j >= 1; j--)
至
for(j = 5;j >= i; j--)
请参见
关于c - 为什么函数j的值不递减? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34515358/
10-08 22:35