Advertisement
JUN7

Soal 1

Mar 19th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. main()
  4. {
  5.     int i=1,x;
  6.     while(i<=5)
  7.     {
  8.         x=5;
  9.         while(i<=x)
  10.         {
  11.             printf("%i ",x);
  12.             x=x-1;
  13.         }
  14.         printf("\n");
  15.         i=i+1;
  16.     }
  17.     getch();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement