This programming assignment will put together everything you learned this week.
ID: 3749386 • Letter: T
Question
This programming assignment will put together everything you learned this week. You will: Create variables and assign values to them Add the variables Use a conditional statement to determine an appropriate string to print out Write a program in JES that does the following: Creates two variables: Num_1 and Num_2 Assigns the value 50 to Num_1 and 25 to Num_2 Creates a third variable Total; Total should add Num_1 and Num_2 Determines if Total is greater than 100, between 100 and 50, or less than 50 Using If, Elif, Else statements, do the following: If Total is greater than 100, print a string that shows the value of Total combined with the string "is too high" If Total is less than 50, print a string that shows the value of Total combined with the string "is too low" If Total is between 100 and 50, print a string that shows the value of Total combined with the string "is in the correct range" Iteration 1: Run your program to demonstrate the output. In this iteration with the variables you provided, the string that is output should state "75 is in the correct range". If it does not, debug the program until it outputs the correct statement. Capture a screenshot of your code with the appropriate output. Iteration 2: Change the value of Num_1 to a number that will result in an output making Total too high. Run your program to demonstrate the output. Capture a screenshot of your code with the approporiate output. Iteration 3: Change the value of Num_1 to a number that will result in an output making Total too low. Run your program to demonstrate the output. Capture a screenshot of your code with the appropriate output. Paste all screenshots into a Word document.
Explanation / Answer
CODE
num_1 = 50 # Iteration 1
# num_1 = 80 # Iteration 2
# num_1 = 10 # Iteration 3
num_2 = 25
total = num_1 + num_2
if total < 50:
print(str(total) + ' is too low')
elif 50 <= total <= 100:
print(str(total) + ' is in the correct range')
else:
print(str(total) + ' is too high')
OUTPUT
# Iteration 1
75 is in range
# Iteration 2
105 is too high
# Iteration 3
35 is too low
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.