C语言 求一C语言程序 例如:第一行 5 6 7 8 第二行 678 第三行 78 第四行 8first line : all digitsecond line :all except first digit third line : all except first two digits.last line : the last digit ~~ do you understand ?~~
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/20 14:03:17
C语言 求一C语言程序 例如:第一行 5 6 7 8 第二行 678 第三行 78 第四行 8first line : all digitsecond line :all except first digit third line : all except first two digits.last line : the last digit ~~ do you understand ?~~
C语言 求一C语言程序 例如:第一行 5 6 7 8 第二行 678 第三行 78 第四行 8
first line : all digit
second line :all except first digit
third line : all except first two digits
.
last line : the last digit ~~
do you understand ?~~
C语言 求一C语言程序 例如:第一行 5 6 7 8 第二行 678 第三行 78 第四行 8first line : all digitsecond line :all except first digit third line : all except first two digits.last line : the last digit ~~ do you understand ?~~
#include
//buffer包含数字的数字
//length数字个数
void dig(int buffer[],int length)
{
for (int i=length-1;i>=0;i--)
{
for (int j=i;j>=0;j--)
{
printf("%d",buffer[length-j-1]);
//如果每个数字之间不需要空格,注释掉下面这行
if(j>0) printf(" ");
}
printf("\n");
}
}
int main()
{
int a[]={1,2,3,4,5,6,7,8,9};
dig(a,9);
}