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

📄 make2db.cpp

📁 data structures, algorithms and Application书的源代码
💻 CPP
字号:
// test 2D array creation with exception throwing

#include <iostream.h>
#include "make2db.h"
#include <except.h>
#include <stdlib.h> // has exit()

void main(void)
{
   int **a;
   try {Make2DArray(a,2,2);}
   catch (xalloc) {
       cerr << "Could not create the array" << endl;
       exit(1);}
   a[0][0] = 1; a[0][1] = 2; a[1][0] = 3; a[1][1] = 4;
   cout << a[0][0] << ' ' << a[0][1] << endl;
   cout << a[0][0] << ' ' << a[1][1] << endl;
}

⌨️ 快捷键说明

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