Guest User

Untitled

a guest
Dec 11th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class Test {
  2.  
  3. public static void main(String[] args) {
  4. for (int i = 4; i >= 1; i--) {
  5. for (int j = 1; j <= 4; j++) {
  6. if (j > i) {
  7. System.out.print("*");
  8. } else {
  9. System.out.print(j);
  10. }
  11. }
  12. for (int j = 4; j >= 1; j--) {
  13. if (j > i) {
  14. System.out.print("*");
  15. } else {
  16. System.out.print(j);
  17. }
  18. }
  19. System.out.println();
  20. }
  21. }
  22. }
Add Comment
Please, Sign In to add comment