Відповідь:
Ось приклад програми, написаної на Python, яка виводить повідомлення на основі введеного балу...
Код :
# Get the score
score = int(input('Enter your score: '))
# Print out the message
if score >= 1 and score <= 3:
print('You achieved a low level.')
elif score >= 4 and score <= 6:
print('You achieved a medium level.')
elif score >= 7 and score <= 9:
print('You achieved a satisfactory level.')
elif score >= 10 and score <= 12:
print('You achieved a high level.')
else:
print('Invalid score.')
Надіюся що допоміг, гарного вечора!)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
Ось приклад програми, написаної на Python, яка виводить повідомлення на основі введеного балу...
Код :
# Get the score
score = int(input('Enter your score: '))
# Print out the message
if score >= 1 and score <= 3:
print('You achieved a low level.')
elif score >= 4 and score <= 6:
print('You achieved a medium level.')
elif score >= 7 and score <= 9:
print('You achieved a satisfactory level.')
elif score >= 10 and score <= 12:
print('You achieved a high level.')
else:
print('Invalid score.')
Надіюся що допоміг, гарного вечора!)