Answer:
I think you have the right answer because it is the most self-explanitory
Explanation:
Add a minimum of 3 comments to your code. These comments should help explain to other users what should be completed in your code:
Answer:
And?hahahahahahahahahaahahahaha
How old was Bill Gates when he founded Microsoft?
Answer:
he was 19 now he is 65 crazy right
Explanation:
Answer:
19
Explanation:
Im not very sure though.
You will write a program that asks a user to fill in a story. Store each response in a variable, then print the story based on the responses.
Part 1: Plan and Write the Pseudocode
Use the following guidelines to write your pseudocode for a fill-in story program.
Decide on a list of items the program will ask the user to input.
Your program should include at least four interactive prompts.
Input from the user should be assigned to variables and used in the story.
Use concatenation to join strings together in the story.
Print the story for the user to read.
Answer:
I think you wanted pseudocode so:
String foodString sportString bookString gamethen ask the user like, what is your favorite food?put the users answer in the food variableask what is your favorite sport?put the answer in the sport variableetcthen do String story = food + sport + book + gameprint story outExplanation:
Lines 1 - 4 are making the variables for the user to fill in
Lines 5 - 9 are getting answers for the Strings
Lines 10 - 11 are making and printing the story