⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 optstring_1.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! Test optional character arguments.  We still need to pass a string! length for the absent argumentsprogram optional_string_1  implicit none  call test(1, "test");  call test(2, c=42, b="Hello World")containssubroutine test(i, a, b, c)  integer ::  i  character(len=4), optional :: a  character(len=*), optional :: b  integer, optional :: c  if (i .eq. 1) then    if (a .ne. "test") call abort  else    if (b .ne. "Hello World") call abort    if (c .ne. 42) call abort  end ifend subroutineend program

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -