Advertisement
Guest User

Untitled

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