Answer:
i need more \\
Explanation:
Chemical cold packs should be used for bone and joint injuries because they are generally colder than ice and stay cold longer.
A.
True
B.
False
Reset
The answer is C.) PostScript
<span>You can change the identation of text in Powerpoint by right clicking on the list item and selecting, "Format Text". On the paragraph tab, you can adjust the indentation before text as given in inches.</span>
def cookie_Recipe(recipe):
sugar=(0.03125*recipe)
butter=(0.02083333333*recipe)
flour=(0.05729166666*recipe)
LF1=round(sugar, 2)
LF2=round(butter,2)
LF3=round(flour, 2)
print("You will need:")
print(LF1, "cups of sugar")
print(LF2, "cups of butter")
print(LF3, "cups of flour")
print("To make", recipe, 'cookies')
recipe=int(input("How many cookies do you want to make?\n"))
cookie_Recipe(recipe)