ex5.cpp
来自「hello everybody. good lucky to you」· C++ 代码 · 共 26 行
CPP
26 行
// Borland C++ - (C) Copyright 1991 by Borland International
// ex5.cpp: Using the Definition class
// from Hands-on C++
#include <iostream.h>
#include "def.h"
main()
{
Definition d; // Declare a Definition object
char s[81];
// Assign the meanings
d.put_word("class");
d.add_meaning("a body of students meeting together to \
study the same subject");
d.add_meaning("a group sharing the same economic status");
d.add_meaning("a group, set or kind sharing the same attributes");
// Print them
cout << d.get_word(s) << ":\n\n";
for (int i = 0; d.get_meaning(i,s) != 0; ++i)
cout << (i+1) << ": " << s << "\n";
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?