-
Program Asteriks
Berikut ini adalah program untuk mencetak asteriks program ini sangat sederhana, hanya untuk pemula. menggunakan kompiler turbo C++ 4.5 untuk mengcompilenya.
Contoh Input :
4
Contoh Output :
****
***
**
*
/*Asteriks*/
#include <stdio.h>
main() {
int x, asteriks, spasi,jum;
scanf("%d",&jum);
for(x=1; x<=jum; x++) {
for(spasi=x ; spasi>1; spasi--)
printf(" ");
for(asteriks=x; asteriks<=jum; asteriks++)
printf("* ");
printf("\n");
}
return 0;
}
Subscribe to:
Post Comments (Atom)
0 comments: