C++并不是完全的面向對象,也可以與C一樣面向過程。
#include<iostream>
int main(){
using spacename std;;
cout<<"Hello World!"<<endl;
cout<<"Welcome to C++\n";
return 0;
}
<< 插入運算符,資訊的輸入輸出看做資訊的流。
cout标準輸出流,流向了顯示器。
using namespace std;//标準庫姓std,using namespace表示打開了門。
如果沒有這一行,講話時候要帶着姓。std::cout
小規模的程式使用using namespace std;
return 0