mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1500.c
This commit is contained in:
parent
a6fdac361f
commit
3e0a8eca92
34
QUSTOJ/1500.c
Normal file
34
QUSTOJ/1500.c
Normal file
|
@ -0,0 +1,34 @@
|
|||
#include <stdio.h>
|
||||
void prt_byINT(int inc)
|
||||
{
|
||||
inc++;
|
||||
int a[40][40];
|
||||
int i,j;
|
||||
for(i=1;i<inc;i++)
|
||||
{
|
||||
a[i][1]=1;
|
||||
a[i][i]=1;
|
||||
}
|
||||
for(i=1;i<inc;i++)
|
||||
for(j=2;j<i;j++)
|
||||
a[i][j]=a[i-1][j-1]+a[i-1][j];
|
||||
for(i=1;i<inc;i++)
|
||||
{
|
||||
for(j=1;j<=i;j++)
|
||||
{
|
||||
printf("%d",a[i][j]);
|
||||
if(j!=i) printf(" ");
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
int main()
|
||||
{
|
||||
int a;
|
||||
while(scanf("%d",&a)==1)
|
||||
{
|
||||
prt_byINT(a);
|
||||
printf("\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user