11 while文

Contents

while文

time = 60
while time > 0:
  print('残り', time, "びょう'")
  time -= 1
  print('試合終了');

 

参考ビデオ