ex6.cpp

来自「C语言实战105例/王为青, 陈圣亮编著 北京-人民邮电出版社 2007」· C++ 代码 · 共 26 行

CPP
26
字号
// Borland C++ - (C) Copyright 1991 by Borland International

// ex6.cpp:   Using the Dictionary class
// from Hands-on C++
#include <iostream.h>
#include "diction.h"

main()
{
   Dictionary d(5);
   char *word = "class";
   char *indef[4] =
     {"a body of students meeting together to study the same",
      "subject a group sharing the same economic status",
      "a group, set or kind sharing the same attributes",
      0};
   char *outdef[4];

   d.add_def(word,indef);
   cout << word << ":\n\n";
   int ndef = d.get_def(word,outdef);
   for (int i = 0; i < ndef; ++i)
      cout << (i+1) << ": " << outdef[i] << "\n";
   return 0;
}

⌨️ 快捷键说明

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