本帖最後由 鄭繼威 於 2022-7-9 14:15 編輯
- #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; //告知主程式已完成
- }
複製代碼 |