Name: Anonymous 2010-07-09 22:40
dear prog teach me recursion in java thats all
interface ILoI {
int add();
}
class LoI implements ILoI {
int first;
ILoI rest;
int add(){
return this.first + this.rest.add();
}
class MTLoi implements ILoI {
int add() {
return 0;
}
}