I like to move it,move it She likes to move it,move it He likes to move it,move it You like to ("move IT")
#include #include int main(){ int bil, i, j; printf("Masukkan tinggi segitiga : "); scanf("%d",&bil); i=bil; while(i>=1) { for(j=i ; j>=1 ; j--){ printf("* ",j); } printf("\n"); i--; } getche(); return 0; }
Post a Comment
No comments:
Post a Comment