Basic
モジュール
質問31/42
このプログラムの出力は以下のどれでしょうか?
   
module mymod   
  integer :: x = 1   
  integer :: y = 2   
  integer :: z = 3   
contains   
  subroutine printsum   
    print *, x+y+z   
  end subroutine   
end module   
   
program main   
  use mymod   
  implicit none   
  x = 4   
  call printsum   
end   
選択肢1
9
選択肢2
6
選択肢3
12
選択肢4
3
選択肢5
未定義もしくはエラー


Results matter. Trust nAG.
Privacy Policy | Trademarks