Bài tập
Viết một chương trình C để in tam giác số.
#include<stdio.h>
#include<conio.h>
main()
{
int i,j,k,l,n;
printf("Nhap pham vi: ");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i;j++)
{
printf(" ");
}
for(k=1;k<=i;k++)
{
printf("%d",k);
}
for(l=i-1;l>=1;l--)
{
printf("%d",l);
}
printf("\n");
}
printf("\n\n===========================\n");
printf("Hoclaptrinh chuc cac ban hoc tot!");
getch();
}
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời