|

楼主 |
发表于 2003-8-27 20:47:13
|
显示全部楼层
今天下午,刚把《the c++ programming language》第三章中的一个不完整的程序补充了一下。感觉这种structure,有些象数据库的雏形。
- #include<iostream>
- #include<istream>
- using namespace std;
- struct Entry{
- string name;
- int number;
- };
- void print_entry(int i); //the form of the function
- int main()
- {
- int i;
- cout<<"there are three recorders, please entry the value of the recorder number, 0, 1, or 2?\n";
- cin>>i;
- print_entry(i); //call the function entry (int i) within the function main()
- }
- void print_entry(int i) //define a function
- {
- Entry phone_book[3]={ {"freedom",1010101}, {"xiangbuidler",1000000}, {"liuxiangbiao",1234567} };
- cout<<i<<' '<<phone_book[i].name<<' '<<phone_book[i].number<<"\n";
- }
复制代码
|
|