Risk

Sign in to test your solution.
# Invoer aanvaller opvragen en bewaren in drie variabelen: A1 = int(input("Geef de eerste worp van de aanvaller in: ")) A2 = int(input("Geef de tweede worp van de aanvaller in: ")) A3 = int(input("Geef de derde worp van de aanvaller in: ")) # Bepaal de hoogste (max) en laagste (min) hoogste worp van de aanvaller # De hoogste A_hoogste = max(A1, A2, A3) A_laagste = min(A1, A2, A3) # Bepaal vervolgens de middelste waarde van de aanvaller ... A_middelste = ...
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.