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

📄 convert.info

📁 这个C++程序
💻 INFO
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -