DECLARE Team1_Nam, Team1_Res, Team2_Nam, Team2 _Res, Team1_Status, Team2_Status, Both_WPS
WIN = 3
DRAW = 1
LOSE = 0
WIN _WPS= 2
LOSE_WPS = 1
DISPLAY “Please enter the name of the first team.”
GET Team1_Nam
DISPLAY “Please enter the result for the first team.”
GET Team1_Res
DISPLAY “Please enter the name of the second team.”
GET Team2_Nam
DISPLAY “Please enter the result for the second team.”
GET Team2 _Res
IF Team1_Res = Team2_Res then
if WPS then
ELSE
DISPLAY “Was the match won through penalty shoot out?”
GET WPS
if WPS = true
IF Team1_Res > Team2_Res then
team1_Status = WIN _WPS
team2_status = Lose_WPS
Else
team1_Status = Lose_WPS
team2_status = Win_WPS
end if
else
IF Team1_Res > Team2_Res then
team1_Status = Win
team2_status = Lose
Else
team1_Status = Lose
team2_status = Win
end if
end if
end if
DISPLAY “For this match: + Team1_Nam + Team1_Status ”:” + Team2_Nam + Team2 _Status
|