<span>The formula is B.=ROUND(B3,0)
So, the format is = ROUND (cell #, # of decimal places)
well if # of decimal places is 0, it just rounds to the nearest integer.
Happy studying ^-^
</span><span>
</span>
A big/potent virus could eliminate economic statuses/money, maybe bankrupting the company.
The appropriate answer is C ! all other are very limited but labour can be increased or decreased according to our will and it doesn't exhaust !
The user should preview a document first to make sure the layout is correct, so as not to waste paper if a font size or layout is incorrect.
In python:
age = float(input("How old are you? "))
weight = float(input("How much do you weigh? "))
heart_rate = float(input("What's your heart rate? "))
time = float(input("What's the time? "))
print("The calories burned for men is {}, and the calories burned for women is {}.".format(
((age * 0.2017) - (weight * 0.09036) + (heart_rate * 0.6309) - 55.0969) * (time / 4.184),
((age * 0.074) - (weight * 0.05741) + (heart_rate * 0.4472) - 20.4022) * (time / 4.184)))
This is the program.
When you enter 49 155 148 60, the output is:
The calories burned for men is 489.77724665391963, and the calories burned for women is 580.939531548757.
Round to whatever you desire.