Advertisement
Solomid

kemo

Apr 12th, 2020
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. a)
  2. if(y == 8){
  3. if(x == 5){
  4. System.out.println("@@@@@");
  5. }else{
  6. System.out.println("#####");
  7. }
  8. System.out.println("$$$$$");
  9. System.out.println("&&&&&");
  10. }
  11.  
  12. b)
  13. if(y == 8){
  14. if(x == 5){
  15. System.out.println("@@@@@");
  16. }else{
  17. System.out.println("#####");
  18. System.out.println("$$$$$");
  19. System.out.println("&&&&&");
  20. }
  21. }
  22. c)
  23. if(y == 8){
  24. if(x == 5){
  25. System.out.println("@@@@@");
  26. }else{
  27. System.out.println("#####");
  28. System.out.println("$$$$$");
  29. }
  30. System.out.println("&&&&&");
  31. }
  32. d)
  33. if(y == 8){
  34. if(x == 5)
  35. System.out.println("@@@@@");
  36. }else{
  37. System.out.println("#####");
  38. System.out.println("$$$$$");
  39. System.out.println("&&&&&");
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement