Name:
Anonymous
2011-09-24 14:41
Why can't moot fix the server
Name:
Anonymous
2013-04-19 18:49
public class Counter{
private int counter;
public Counter(int temp){
counter = temp;
}
public void increment(){
counter++;
}
public void decrement(){
counter--;
}
public int getValue(){
return counter;
}
}
INDUSTRIAL STRENGTH CODE