matrix.pas

来自「this is a lp0 compilator new」· PAS 代码 · 共 25 行

PAS
25
字号
{**********************************************************************
 *                                                                    *
 *   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 + =
减小字号Ctrl + -
显示快捷键?