正常使用
cout << "Count is "<<i<<endl;
含有std
std::cout << "Count is " << count << std::endl;
std 是一个类(输入输出标准),包括cin 成员和cout成员.
使用 using name space std 以后才能使用它的成员.
#include<iostream.h> 中不存在类std,但它有cin,out的相关函数,不需要使用命名空间了.
时间: 2024-10-08 13:09:57
正常使用
cout << "Count is "<<i<<endl;
含有std
std::cout << "Count is " << count << std::endl;
std 是一个类(输入输出标准),包括cin 成员和cout成员.
使用 using name space std 以后才能使用它的成员.
#include<iostream.h> 中不存在类std,但它有cin,out的相关函数,不需要使用命名空间了.