Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by sadf ( 6 years ago )
public class Temp{
private int input;
public Temp(int input){
this.input=input;
}
public void calculate(){
input+=1;
}
public int returnCalculation(){
return this.input;
}
}
public class Test{
public static void main(String[]args){
Temp temp = new Temp(5);
temp();
System.out.println(temp());
}
}
Revise this Paste