Advertisement
Guest User

Untitled

a guest
May 20th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class starWars0016 {
  4. /*
  5. * NAMA : NURDINA NIM: D0217316 KELAS : INFORMATIKA D 017
  6. */
  7. public static void main(String[] args) {
  8. Scanner sc = new Scanner(System.in);
  9. System.out.print("INPUT : ");
  10. int a = sc.nextInt();
  11. System.out.println("OUTPUT : ");
  12.  
  13. for (int i = 0; i < a; i++) {
  14.  
  15. System.out.println("+");
  16.  
  17. System.out.println("|");
  18. }
  19.  
  20. System.out.println("+");
  21.  
  22. }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement