定义常量。定义后,常量符号的值不可变更。比如:integer, parameter :: npot=600000则代表定义一个integer类型的常量npot,它的值为600000。此后的代码不可以更改npot的值,也就是说不可以出现:npot=1234之类的代码:)