LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
12
返回列表 发新帖
楼主: Xiangbuilder

简单的C++问题.

[复制链接]
发表于 2003-8-26 23:01:53 | 显示全部楼层

  1. #include<iostream>
  2. using namespace std;

  3. void y(int);
  4. int main()
  5. {
  6.    int a=1;
  7.    y(a);
  8.    cout << "thank you run the program.\n";
  9. }
  10. void y(int i)
  11. {
  12.    cout << "the value of i: "
  13.         << i << '\n';
  14. }
复制代码


这三本 C++ 都是大作,对没接触过 C/C++ 或 java 的朋友是难了点。
你的问题和 C++ 无关,实在是太太基本了,建议看一遍 << The C program language >> 或谭皓强写的 C 语言教程。
 楼主| 发表于 2003-8-27 09:35:55 | 显示全部楼层
谢谢各位耐心、认真教授。

以前几乎没有编程经验,简单接触了一下C++,
发现好象关于C++的书大都不对基础知识做详细介绍,
也许我应该从介绍C的书中弥补这方面的不足。
 楼主| 发表于 2003-8-27 20:47:13 | 显示全部楼层
今天下午,刚把《the c++ programming language》第三章中的一个不完整的程序补充了一下。感觉这种structure,有些象数据库的雏形。

  1. #include<iostream>
  2. #include<istream>

  3. using namespace std;

  4. struct Entry{
  5.    string name;
  6.    int number;
  7. };

  8. void print_entry(int i); //the form of the function

  9. int main()
  10. {
  11.    int i;
  12.    cout<<"there are three recorders, please entry the value of the recorder number, 0, 1, or 2?\n";
  13.    cin>>i;
  14.    print_entry(i); //call the function entry (int i) within the function main()
  15. }
  16. void print_entry(int i) //define a function
  17. {
  18.    Entry phone_book[3]={ {"freedom",1010101}, {"xiangbuidler",1000000}, {"liuxiangbiao",1234567} };
  19.    cout<<i<<' '<<phone_book[i].name<<' '<<phone_book[i].number<<"\n";  
  20. }

复制代码

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表