objective c - How to solve unknown expected error in iphone app -
i assigning value var calculations shows syntax error have seen brackets still gives error here code .
appdelegate.same_vaccination_cost_treatment_annually_with_guarantee=((appdelegate.same_vaccination_cost_treatment_annually_no_guarantee - 5000) / appdelegate.same_vaccination_cost_treatment_annually_no_guarantee) * ((appdelegate.cost_treatment_severeei * appdelegate.same_vaccination_severeei_annually) + (appdelegate.cost_treatment_moderateei * appdelegate.same_vaccination_moderateei_annually) + (appdelegate.cost_treatment_mildei * appdelegate.same_vaccination_mildei_annually)))) * appdelegate.same_vaccination_horses_per_premise;
as per code:-
float same_vaccination_cost_treatment_annually_with_guarantee; float cost_treatment_severeei; float same_vaccination_severeei_annually; float cost_treatment_mildei; float same_vaccination_mildei_annually; float same_vaccination_horses_per_premise; float same_vaccination_cost_treatment_annually_no_guarantee; float cost_treatment_moderateei; float same_vaccination_moderateei_annually; same_vaccination_cost_treatment_annually_with_guarantee=(((same_vaccination_cost_treatment_annually_no_guarantee - 5000) / same_vaccination_cost_treatment_annually_no_guarantee) * (((cost_treatment_severeei * same_vaccination_severeei_annually) + (cost_treatment_moderateei * same_vaccination_moderateei_annually) + (cost_treatment_mildei * same_vaccination_mildei_annually)) * same_vaccination_horses_per_premise));
and can put method like:-
same_vaccination_cost_treatment_annually_with_guarantee=((same_vaccination_cost_treatment_annually_no_guarantee - 5000) / same_vaccination_cost_treatment_annually_no_guarantee) * ((cost_treatment_severeei * same_vaccination_severeei_annually) + (cost_treatment_moderateei * same_vaccination_moderateei_annually) + (cost_treatment_mildei * same_vaccination_mildei_annually)) * same_vaccination_horses_per_premise;
Comments
Post a Comment