Advertisement
Guest User

switch

a guest
Nov 1st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. program TEST
  2.     implicit none
  3.    
  4.     integer :: i
  5.    
  6.     read(*,*) i
  7.    
  8.     select case (i)
  9.         case (1)
  10.             print *,"Opcja 1"
  11.         case (2)
  12.             print *,"Opcja 2"
  13.         case default
  14.             print *,"Nieznana opcja"
  15.     end select
  16.     stop
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement