1 protect a worksheet
2 drag the worksheet tab
3 rename worksheet
4 navigate between worksheet
Answer: add up all the numbers and then add the tax and then 30% of the total for the tax
Explanation:
like 3+6+8+10=26
26 30%=whatever that is and then add it all up againg and thta is your answer.
Answer:
false is the answer okkkkkkkkkkkkkkkk
Answer:
total = 0
items = int(input("Enter the number of items ordered: "))
for i in range(items):
price = float(input("Enter the price of item " + str(i+1) + ": "))
total += price
if total < 200:
total += (items * 10)
print("Bill is $" + str(total))
Explanation:
*The code is in Python.
Ask the user to enter the number of items ordered
Create a for loop that iterates depending on the number of items ordered. Inside the loop, ask the price of each item and add it to the total
After the loop, check the total. If it is smaller than 200, add 10 for each item to the total
Print the total