40 likes | 59 Views
Chapter 2 Practice. Convert pseudocode to Java code. Store 20 in the speed variable. Store 10 in the time variable. Multiply speed by time and store the result in the distance variable. Display the contents of the distance variable. Convert pseudocode to Java code.
E N D
Convert pseudocode to Java code • Store 20 in the speed variable. • Store 10 in the time variable. • Multiply speed by time and store the result in the distance variable. • Display the contents of the distance variable.
Convert pseudocode to Java code • Store 172.5 in the force variable. • Store 27.5 in the area variable. • Divide area by force and store the result in the pressure variable. • Display the contents of the pressure variable.
Write program • Write a program that declares the following: • A String variable named name • An int variable named age • A double variable named salary • Store your name, age and salary in these variable. The program then displays a message similar to the following: My name is Hoa, my age is 26 and I hope to earn $300 per month.