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

📄 flprnt.for

📁 This Source-Navigator, an IDE for C/C++/Fortran/Java/Tcl/PHP/Python and a host of other languages.
💻 FOR
字号:
      SUBROUTINE FLPRNT(NBLANK,SHEAD,N,STRING,NCOUNT)*-----------------------------------------------------------------------**--- writes lines onto PRINT output file (MPUNIT)**--- input*    NBLANK      # of blank lines to print in front*    SHEAD       string to be put into header part of line 1*    N           # of lines*    STRING      lines*--- input/output*    NCOUNT      counter to be increased by N**-----------------------------------------------------------------------      include 'param.h'      include 'usunit.h'      CHARACTER *(*) STRING(*),SHEAD,SLOC*15      DO 10 I=1,NBLANK         WRITE (MZUNIT,'('' '')')   10 CONTINUE      SLOC=SHEAD      WRITE(MZUNIT,'(1X,A15,A)')  SLOC,STRING(1)      DO 20 I=2,N         WRITE (MZUNIT,'(16X,A)') STRING(I)   20 CONTINUE      NCOUNT=NCOUNT+N      END

⌨️ 快捷键说明

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