2017年8月4日 星期五

【C++教學】Code Blocks整合開發環境 02 - 如何儲存專案與基本程式碼名詞教學(01)

以後約每1~2天上傳一集
請大家敬請持續觀看

因Youtube說明欄無法放置程式碼中的部分符號
程式碼將放置於團隊官網

#include <stdio.h>
#include <iostream>
#include <stdlib.h>
int main(){
    std::cout<<"Hello world!"<<std::endl;
    printf("Hello world\n");
    system("pause");
    return 0;
}