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

📄 nextin.for

📁 This Source-Navigator, an IDE for C/C++/Fortran/Java/Tcl/PHP/Python and a host of other languages.
💻 FOR
字号:
      FUNCTION NEXTIN(STRING,KFCH,KLCH)*-----------------------------------------------------------------------**   returns as function value the integer extracted from string*   'STRING' between KFCH and KLCH, by ignoring all non-numeric*   characters. default value is therefore 0.**-----------------------------------------------------------------------      include 'param.h'      CHARACTER *(*) STRING      include 'convex.h'      N=0*--- convert external zero into internal      NZERO=ICVAL('0')*--- construct integer      DO 10 J=KFCH,KLCH         I=ICVAL(STRING(J:J))-NZERO         IF (I.GE.0.AND.I.LE.9) N=10*N+I   10 CONTINUE      NEXTIN=N      END

⌨️ 快捷键说明

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