第二種寫法,用域限定符來逐個制定
#include<iostream> 已報名夏老師c底部評
int main()
{
std::cout<<"Nice to meet you!"<<std::endl;
return 0;
}
復(fù)制代碼
第三種,用using和域限定符一起制定用那些名字
#include<iostream>
using std::cout;
using std::endl;
cout<<"Nice to meet you!"<<endl;