Advertisement
Azazavr

com.javarush.test.level07.lesson12.home07

Apr 20th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 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 static final 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.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement