convert.info

来自「这个C++程序」· INFO 代码 · 共 48 行

INFO
48
字号
# Information file for conversion from Fortran to C++ Pseudocode
# July 21, 2007
Version = 1.0

# This allows you to modify the spacing before the end-of-line semicolon
EndOfStatement = ";"
# This is the label used in C++; example '10' will become something like jump10:
GotoLabel      = "jump"
IndentString   = "	"
# This is the indentation length (it repeats the indent string X times)
IndentLength   = 1
# Set auto decrement to zero to turn it off (only for do loops)
AutoDecIndex   = 1
# Maximum length of the line before program attempts to break them apart
MaxLineLength  = 85

#
# This is the top for the file header
#
FileHeader     = #~END~
/*
** FileName: 
** Purpose:  
**
** Conversion Date: July 21, 2007
*/

/* Includes */

/* Static Declarations */

/* Globals */

#~END~


#
# This is the the program default header for the start of each program
#
ProgramHeader   = #~END~

/*
** Routine: 
** Purpose: 
**
** Conversion Date: July 21, 2007
*/
#~END~

⌨️ 快捷键说明

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