Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- int main(){
- int n;
- printf("==== EZ ====");
- printf("\n");
- printf("Masukkan nilai n = ");scanf("%d",&n);
- for(int i = 1;i<=n;i++){
- for(int j=i;j<n;j++){
- printf(" ");
- }
- for(int k=1;k<=i;k++){
- printf("*");
- }
- printf("\n");
- }
- printf("== PROJECT END! == \n");
- printf("=== KEREN KAN? === \n");
- printf("===== SIVONN ===== \n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement