標題:
[隨堂測驗] C++ 基本程式架構
[打印本頁]
作者:
許婷芳
時間:
2019-9-21 07:15
標題:
[隨堂測驗] C++ 基本程式架構
還記得我們上次上課教的基本程式架構嗎?
作者:
李穎俊
時間:
2019-9-21 10:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
system("pause");
return 0;
複製代碼
作者:
王銘鴻
時間:
2019-9-21 10:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
system("pause");
return 0;
}
複製代碼
作者:
朱閎聿
時間:
2019-9-21 10:40
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
林羿丞
時間:
2019-9-21 10:42
本帖最後由 林羿丞 於 2019-9-21 10:55 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
system("pause");
return 0;
}
複製代碼
作者:
蕭浚宇
時間:
2019-9-21 10:46
本帖最後由 蕭浚宇 於 2019-9-21 10:52 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2