how to write this code, who can help on skype or here?
//I try to learn java and make an application. please help me on skype: //hamid.mohammadi30@hotmail.com think we have an university: 1.teachers Name, ID 2.students Name, ID 3.chemicals Name, ID, Formula, Cost, Consumption, TotalCost(Cost * Consumption) * each teacher has some students. input of application is: Teacher ID, student ID, chemical ID, chemical Consumption output of application is: teachers Names + chemicals Name + chemicals Consumption + TotalCost students Names + chemicals Name + chemicals Consumption + TotalCost chemicals Name + chemicals Consumption + TotalCost for Example: Teachers{ Jack, ID=100{ Students (Mary, ID = 101), (Robert, ID = 102) } Mick, ID=120{ Students (Anderson, ID = 121) } } Chemicals{ Name =Sodium Chloride, ID=1, Formula = NaCl, Cost = 0.2$ Name =Sodium Hydroxide, ID=2, Formula = NaOH, Cost = 1.2$ } Mary consume 25 grams of NaCl Robert consume 8 grams of NaOH Anderson consume 13 grams of NaCl input: 100, 101, 1, 25 100, 102, 2, 8 120, 121, 1, 13 output1 (Teachers): jack Sodium Chloride 25 gr 5$ Sodium Hydroxide 8 gr 9.6$ ------------------------------------ Total Cost 14.6$ Mick Sodium Chloride 13 gr 2.6$ ------------------------------------ Total Cost 2.6$ output2 (Students): Mary Sodium Chloride 25 gr 5$ Robert Sodium Hydroxide 8 gr 9.6$ Anderson Sodium Chloride 13 gr 2.6$ output3 (Chemicals): Sodium Chloride 38 gr 7.6$ Sodium Hydroxide 8 gr 9.6$