プログラミング入門I 確認テスト 2023.11.20

Back


サンフレッチェ広島とリバプールの夢の対決が実現しました.双方の得点を 0 から 3 の整数のどれか(乱数により発生させたもの)とし,以下のように結果を表示するプログラムを作成しましょう.

Student number: s236099

Liverpool 3 - 0 Sanfrecce
The winner: Liverpool FC

------------------------
Student number: s236099

Liverpool 0 - 1 Sanfrecce
The winner: Sanfrecce Hiroshima FC

------------------------
Student number: s236099

Liverpool 1 - 1 Sanfrecce
Draw

------------------------
Liverpool 勝利Sanfrecce 勝利引き分け

解答用紙を使用する際には,学生番号と名前の記入も忘れないでください.さらに,解答用紙自体がPythonのプログラムとなっていますので,実行してエラーの無いことを確認してから提出してください.

指定の解答用紙を使用していない,実行時にエラーが出る,学生番号と名前が無い,というような答案は提出されても採点しません.注意してください.


# #############################
#
# プログラミング入門I 確認テスト 2023.11.20
# 学生番号:  s236099
# 氏名:     松江 花子
#
# #############################

import random

print('Student number: s236099')
print('')

goal_l = random.randint(0, 3)
goal_s = random.randint(0, 3)

print(f'Liverpool {goal_l} - {goal_s} Sanfrecce')

if goal_l > goal_s:
    print('The winner: Liverpool FC')
elif goal_l < goal_s:
    print('The winner: Sanfrecce Hiroshima FC')
else:
    print('Draw')

print('\n------------------------\n')


Back