This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package gjt2; | |
public class Calc { | |
private int v1; | |
private int v2; | |
public Calc(int a, int b) { | |
v1 = a; | |
v2 = b; | |
} | |
public int calc() { |
NewerOlder