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

📄 matrix.pas

📁 this is a lp0 compilator new
💻 PAS
字号:
{**********************************************************************
 *                                                                    *
 *   Gerald Carter                                                    *
 *   matrix.pas                                                       *
 *   November 30, 1995                                                *
 *                                                                    *
 *   Simple matrix multiplication driver and funciton.                *
 *                                                                    *
 **********************************************************************}
PROGRAM Matrix (input, output)
CONST
   row1 = 10

TYPE
   MatrixType1 = array [1..row1, 1..col1] of integer;
   MatrixType2 = array [1..row2, 1..col2] of integer;
   MatrixType3 = array [1..row1, 1..col2] of integer;





BEGIN

END.

⌨️ 快捷键说明

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