Enter the number of hours:10
Ebter the number of minytes:30
Time:10:30
(这两个值传递给一个void 函数这个不明白哦)
还有个问题就是 怎么有没有using namespace std;这个 好象没什么关系 这是为什么哦
请高手帮忙哦
/*---------------------------------------------------------------------------
File name: main.cpp
Author: HJin (email: fish_sea_bird [at] yahoo [dot] com )
Created on: 9/19/2007 07:17:19
Environment: Windows XP Professional SP2 English +
Visual Studio 2005 v8.0.50727.762
*/
#include <iostream>
using namespace std;
void function(int hours, int minutes);
int main()
{
int a, b;
cout<<"Enter the number of hours:";
cin>>a;
cout<<"Enter the number of minutes:";
cin>>b;
function(a, b);
return 0;
}
void function(int hours, int minutes)
{
cout<<"Time:"<<hours<<":"<<minutes<<endl;
}
这两者都有什么不同呢?首先,5年前我们就开始反对把.h符号继续用在标准的头
文件中。继续使用过时的规则可不是个好的方法。从功能性的角度来讲,
<iostream>包含了一系列模板化的I/O类,相反地<iostream.h>只仅仅是支持字符
流。另外,输入输出流的C++标准规范接口在一些微妙的细节上都已改进,因此,
<iostream>和<iostream.h>在接口和执行上都是不同的。最后,<iostream>的各组
成都是以STL的形式声明的,然而<iostream.h>的各组成都是声明成全局型的。
因为这些实质上的不同,你不能在一个程序中混淆使用这两个库。做为一种习
惯,在新的代码中一般使用<iostream>,但如果你处理的是过去编写的代码,为了
继承可以用继续用<iostream.h>旧保持代码的一致性。
///////////////////
<iostream>表示你使用的是标注命名空间,也就是在程序开始应该有这么一句话
using namespace std ;
这是遵循c++标准的
<iostream.h>
则没有遵循c++标准
////////////////
<string.h>是旧的C头文件,对应的是基于char*的字符串处理函数;
<string>是包装了std的C++头文件,对应的是新的strng类;
<cstring>是对应旧的C头文件的std版本。