- #include<iostream> //IO=input&output 引入輸入輸出串流函式庫
- #include<cstdlib> //C standard library C標準函式庫
- using namespace std; //指定命名空間為std
- //主程式
- int main(){
- //你要做的事
- //cout 輸出 <<串接符號(當方法,字串,變數要一起使用時) endl換行
- cout<<"Hello World1"<<endl;
- cout<<"Hello World2"<<endl;
-
- system("pause"); //讓黑色畫面暫停
- return 0; //告知主程式已完成執行
- }
複製代碼 |