Guest User

Untitled

a guest
Dec 15th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public class Main {
  2. public static void main(String[] args) {
  3. Scanner sc =new Scanner(System.in);
  4. int x;
  5. System.out.println("Input number of bands:");
  6. x = sc.nextInt();
  7. for(int i = 1; i <= 5; i++){
  8. for(int j = 1; j <= x; j++){
  9. if(j%2==0)
  10. System.out.print("+++");
  11. else
  12. System.out.print("***");
  13. }
  14. System.out.println("");
  15. }
  16.  
  17.  
  18. }
  19. }
Add Comment
Please, Sign In to add comment