Question

I need a help regarding this. Compute and display the sum o 1st and 2nd number, Difference of sum and 3rd number, product of difference and 4th number, Quotient of product and 5th number using Eclipse Helios. My subject is OOP

Answers

Steve
sum12 = n1 + n2
diffs3 = sum12-n3
prodd4 = diffs3*n4
quotp5 = prodd4/n5

I think you can write the code to gather n1-n5 and display the values calculated above.