- 写出一个程序,输入n,输出n行数字三角形(n不大于10),例如,输入n=7时,输出以下图形。
0 1 2 3 4 5 6
7 8 9 0 1 2
3 4 5 6 7
8 9 0 1
2 3 4
5 6
7
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
#include<iostream>
using namespace std;
int main(){
int i,j,n,cur=0;
printf("input a number:\n");
scanf("%d",&n);
for(i=n;i>=0;i--){
for(j=0;j<=i;j++){
printf("%d ",cur);
cur++;
if(cur==9)
cur=0;
}
printf("\n");
}
system("pause");
return 0;
}