#include <stdio.h>
#include <conio.h>
main(){
int baris;
printf("Masukkan banyak baris : ");scanf("%i",&baris);
printf("\n");
for(int y=1; y<=baris; y++){
for(int x=1; x<=y; x++){
printf("*");
}
printf("\n");
}
getch();
}
#include <conio.h>
main(){
int baris;
printf("Masukkan banyak baris : ");scanf("%i",&baris);
printf("\n");
for(int y=1; y<=baris; y++){
for(int x=1; x<=y; x++){
printf("*");
}
printf("\n");
}
getch();
}
No comments