Answer:
This is python, I don't know what type of programming language you are learning.
import random
# Enter your code here
dice1 = random.randint(1,6)
dice2 = random.randint(1,6)
total = 0
while True:
if dice1 == 1 and dice2 == 1:
total += 1
print("Rolled: " + str(dice1) + " " + str(dice2))
break
else:
total += 1
print("Rolled: " + str(dice1) + " " + str(dice2))
dice1 = random.randint(1,6)
dice2 = random.randint(1,6)
print("It took you "+ str(total) + " rolls to get snake eyes.")
Explanation:
Answer:
2 + 7
3 + 1
Explanation:
The program prints whatever you tell it to print
Enter key. good luck with whatever you are trying to do!
Your correct answer is A. Always drive at the posted speed limit.
While B. and C. are logically also correct, I wouldn't call them the "golden" rules. Following A. can help you avoid B. to make matters better, hehe.
Radios broadcast using AM (amplitude modulation) and FM (frequency modulation).