Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class B {
  2. public static void st(int x){
  3. int y = x - 7; //Y
  4. y = y + x; //Y
  5. x++;
  6. }
  7.  
  8. public static void main(String[] args) {
  9. int x = 0; //A
  10. int z = 5; //B
  11. x = ++x * z; //C
  12.  
  13.  
  14.  
  15. st(x + 3); //D
  16. x = ++x; //E
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement