標題:
我的第一個程式
[打印本頁]
作者:
陳品肇
時間:
2018-3-24 16:14
標題:
我的第一個程式
#include<iostream> //引入 <基本輸入輸出> 標頭檔 in & out stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
cout<<"hello"<<endl; //cout輸出 endl換行
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
蔡依宸
時間:
2018-3-24 16:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"我是依宸"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2018-3-24 16:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"白帥帥" ;
system("pause");
return 0 ;
}
複製代碼
作者:
譚詩澐
時間:
2018-3-24 16:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
cout<<"我是譚詩澐"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
陳柏霖
時間:
2018-3-24 16:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"我是陳柏霖"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳杏宜
時間:
2018-3-24 17:01
本帖最後由 陳杏宜 於 2018-3-24 20:27 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"我是陳杏宜"<<endl;
system("pause");
return 0 ;
}
複製代碼
作者:
陳品肇
時間:
2018-5-26 13:51
#include<iostream> // 引入輸入輸出的標頭檔 // => 註解
#include<cstdlib> // c++ standard library 引入c++標準函式庫
using namespace std; // namespace命名空間
int main() //主函式
{
cout<<"hello world"<<endl; // cout輸出文字在畫面上 , endl 換行
system("pause"); // 執行畫面停留
return 0; // 執行完成
}
複製代碼
作者:
戴偉宸
時間:
2018-5-26 13:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"bye"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2018-5-26 13:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello pig"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2018-5-26 14:04
#include<iostream> //input&output
#include<cstdlib> //standardliburary
using namespace std;
int main() //主函式
{
cout<<"hello "<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2