Advertisement
Guest User

Untitled

a guest
May 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package java2scala.in;
  2.  
  3. import java.io.File;
  4.  
  5. public class TestClass1 {
  6. private final String text = "text";
  7.  
  8. public int fun(int x) {
  9. System.out.println(x);
  10. int y = 5 * (6 + x);
  11. while (y< 60 and y!=5) {
  12. y = x + y;
  13. }
  14. if (true) {
  15.  
  16. }
  17. else {
  18.  
  19. }
  20. boolean f = true;
  21. f = !f;
  22. System.out.println(text);
  23. File file = new File("");
  24. return x;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement