Advertisement
Guest User

Untitled

a guest
May 25th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package com.javarush.test.level06.lesson11.home03;
  2.  
  3. /* Переставь один модификатор static
  4. Переставь один модификатор static, чтобы пример скомпилировался.
  5. */
  6.  
  7. public class Solution
  8. {
  9.  
  10. public static int A = 5;
  11. public int B = 2;
  12. public int C = A*B;
  13.  
  14. public static void main(String[] args)
  15. {
  16. A = 15;
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement