You are on page 1of 1

Class Pot {

Savage savage;
Cook cook;
int count;
Pot(){
count = 0;
}
servings(){
while(count <= 4){
savage.getserving();
count++;
}
cook.fillpot();
count = 0;
}
}
Class Pots {
main()
{
Pot pot;
for(;;){
pot.servings();
}
}
}
class Savage {
getserving(){
}
}
class Cook{
fillpot(){
}
}

You might also like