plz help me good people solve this problem and look in answers for the question.
public class Production { int years,days; int no_cows; double cow_in_heat; double heatFertile; double cowServed; public Production(int days,int years,int no_cows ,double cow_in_heat,double heatFertile,double cowServed){ this.days=days; this.no_cows = no_cows; this.years = years; this.cow_in_heat = cow_in_heat; this.heatFertile=heatFertile; this.cowServed=cowServed; } public void cowsInHeat(int no_cows){ cow_in_heat= no_cows* 0.9 ; System.out.println("there are " + cow_in_heat +"\t cows in heat "); } public void HeatsFertile(){ heatFertile = 0.9 * cow_in_heat ; System.out.println(heatFertile); } public void pregnant(){ cowServed=0.95 * heatFertile; double bull= 0.3 * cowServed; System.out.println("there are : "+cowServed+"\t cows that are pregnant"); System.out.println("there will be : " +bull +"\t bulls"); } public void gestation(int days){ if (days==287) System.out.println(" it's a Bull"); else if (days ==279) System.out.println("it's a heifer"); } public static void main(String[] args) { Scanner input=new Scanner(System.in); int days =0; double bull= 0; Production Production =new Production(00,00,00,0.0,0.0,0.0); Production.cowsInHeat(100); Production.HeatsFertile(); Production.pregnant(); Production. gestation(287); } }