/* CSC 101 Fall 2013 */ /* Alex Dekhtyar Lab 3 */ /* Grower's Grove Game */ /************************************/ /* time to harvest estimate test */ #include #include "grove.h" #include "checkit.h" int main(){ checkit_double(harvestTime(3,3), 71); checkit_double(harvestTime(1,19), 61); checkit_double(harvestTime(7,8), 66); checkit_double(harvestTime(12,3), 62); checkit_double(harvestTime(4,17), 61); return(0); }