標題:
[隨堂測驗] C++ 基本程式架構
[打印本頁]
作者:
鄭繼威
時間:
2022-3-8 22:09
標題:
[隨堂測驗] C++ 基本程式架構
本帖最後由 鄭繼威 於 2022-6-29 19:14 編輯
試著把C++的基本架構寫出來
#include<iostream> //引入input & output基本輸入輸出函式庫
#include<cstdlib> //引入C Standard Library標準函式庫
using namespace std; //指定命名空間為std
//主函式
int main()
{
//你要做的事
//註解(給人看的不是給電腦看的)
system("pause"); //讓黑色畫面暫停
return 0; //告知主程式完成
}
複製代碼
作者:
may
時間:
2022-4-18 19:26
#include<iostream> //匯入input & output基本輸入輸出函式庫
#include<cstdlib> //引入C Standard Library標準函式庫
using namespace std; //指定命名空間為std
int main()
{
cout<<"Hello world"<<endl;
system("pause"); //讓黑色畫面暫停
return 0; //告知主程式完成
}
複製代碼
作者:
李睿宸
時間:
2022-4-18 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-4-18 19:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//你要的程式
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-4-18 19:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//你要做的是
system("pause");
return 0;
}
_
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2