📄 string.f90
字号:
! Program to test string handlingprogram string implicit none character(len=5) :: a, b character(len=20) :: c a = 'Hello' b = 'World' c = a//b if (c .ne. 'HelloWorld') call abort if (c .eq. 'WorldHello') call abort if (a//'World' .ne. 'HelloWorld') call abort if (a .ge. b) call abortend program
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -