Download - ejercicio8.txt

Transcript

7/21/2019 ejercicio8.txt

http://slidepdf.com/reader/full/ejercicio8txt 1/1

program ejercicio8implicit noneinteger:: edadcharacter(len=5)::regaloprint*, "!!!!!!!!!!!!!!!!!!!!!!!!!"print*, "WELCOME TO JOAKIN'S PARTY"PRINT*, "!!!!!!!!!!!!!!!!!!!!!!!!!"print*, "¿cual es tu edad?"read(*,*) edadif (edad>23) then

print*, "¿trajiste regalo para joakin?"read(*,*) regaloif (regalo=="si") then

print*, "Puedes entrar a la fiesta"else

print*, "que lastima, no puedes entrar :( "end if

elseif (edad==23) then

print*, "Que suerte!! Entras gratis"else

print*, "Mala suerte, no vas a entrar!"end if

end if

end program