1) Create a program that:
a) asks the user for their name
b) asks the user where they work
c) asks how much they make an hour
d) outputs all three responses in a logical manner
2) Create a program that:
a) asks the user for a number
b) output a number that is 2 times the amount of the original number
3) Create a program that will:
a) ask the user for their name
b) ask the user where they work
c) ask how much they make an hour
d) ask how many hours they work in a week
e) outputs their name and their bi-weekly paycheck amount
4) Create a program that will calculate the circumference of a circle once it is given the diameter.
5) Correct the mistakes:
Var hours:int
put "How much time do you spend watching TV a day?"
get hours
Hours:= hours*7
Put " You will watch, " hours, of TV a week.
6) Create a program that will:
a) Ask for and get the location of two points. You will need (x,y) values for each point.
b) Computes the Midpoint of the two points.
c) Finds the distance between the two points.