美文网首页Fortran
👩‍⚖️Fortran--操作符

👩‍⚖️Fortran--操作符

作者: YI_YI_ | 来源:发表于2019-03-25 15:10 被阅读0次
1:加,减,乘,除,乘方
program arithmeticOP
    implicit none
    integer :: a,b,c
    
    a = 5
    b = 3
    
    c = a ** b
    
    print *,"c =",c
    !multiplication
     c = a + b
     print *,"c = ",c
     
     !division
     c = a / b
     print *,"c = ",c
     
     !addition
     c = a + b
     print *,"c = ",c
     
     !subtraction
     c = a - b
     print *,"c =",c
     
    read *
    end program arithmeticOP
     
结果:
result_op.png

相关文章

网友评论

    本文标题:👩‍⚖️Fortran--操作符

    本文链接:https://www.haomeiwen.com/subject/yozvvqtx.html