Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. TextWindow.Write("vuoi iniziare? ")
  2. risp=textwindow.read()
  3. While(risp="S" Or risp="s")
  4. TextWindow.Write("inserisci destinazione ")
  5. D=TextWindow.Read()
  6. TextWindow.Write("inserisci il numero di giorni ")
  7. N=TextWindow.Read()
  8. TextWindow.Write("inserisci mezzo di trasporto ")
  9. M=TextWindow.Read()
  10. If M="treno" Then
  11. TextWindow.WriteLine ("viaggi in treno " + D)
  12. TextWindow.WriteLine ("numero giorni " + N)
  13. TextWindow.WriteLine ("viaggi mezzo " + M)
  14. endif
  15.  
  16. TextWindow.Write("vuoi continuare? ")
  17. risp=textwindow.read()
  18. EndWhile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement