Answers for "fortran hello world program"

0

fortran hello world

program helloworld

      print * ,  "Hello World!"

end program helloworld
Posted by: Guest on February-13-2021
0

fortran hello world

Program hello
	implicit none
    character(11) :: WORD
    word="hello world"
    write(*,*) word
end program hello
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language