永发信息网

c语言作业 高手进

答案:4  悬赏:60  手机版
解决时间 2021-04-24 05:54
  • 提问者网友:却不属于对方
  • 2021-04-24 02:49

要求用循环做出如下

123456789

23456789

3456789

456789

56789

6789

789

89

9

最佳答案
  • 五星知识达人网友:末日狂欢
  • 2021-04-24 04:14

#include "stdio.h"


void main()
{
int i,j;
for(i = 0 ; i < 9 ; i ++)
{
for(j = 1 + i ; j <= 9 ; j ++)
{
printf("%d",j);
}
if(i != 8)
printf("\n");
}
}

全部回答
  • 1楼网友:孤独入客枕
  • 2021-04-24 06:12
#include "stdio.h" void main() { int count = 0,Row = 0, Column = 0; printf("please input a number : "); scanf("%d",&count); for(Row = 1; Row <= count ; Row++) { for(Column=Row ; Column <= count ;Column++) { printf("%d",Column); } printf("\n"); } }
  • 2楼网友:傲气稳了全场
  • 2021-04-24 05:27
#include<stdio.h> void main() { int l_nNumbers[9]={1,2,3,4,5,6,7,8,9}; int l_nIndex,l_nCount; //数组下标和打印的次数 for(l_nCount=0;l_nCount<9;l_nCount++) { for(l_nIndex=l_nCount;l_nIndex<9;l_nIndex++) { printf("%d",l_nNumbers[l_nIndex]); } printf("\n"); } }
  • 3楼网友:雪起风沙痕
  • 2021-04-24 05:08

main(){

int i, j;

for(i = 1; i <=9; i ++){

for(j = i; j <= 9; j++){

printf("%d", j);

}

printf("\n");

}

}

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯