標題:
我的第一支程式
[打印本頁]
作者:
tonyh
時間:
2015-1-30 10:08
標題:
我的第一支程式
本帖最後由 tonyh 於 2015-1-30 10:30 編輯
在螢幕上顯示 hello 字樣.
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out 串流
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式開始
{ //主函式的內容
cout<<"hello"<<endl; //利用cout進行輸出, endl代表換行
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦本程式已成功執行
}
複製代碼
作者:
涂幸宸
時間:
2015-1-30 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"你好"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-1-30 10:31
回復
4#
tonyh
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王翔
時間:
2015-1-30 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-1-30 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
趙弘揚
時間:
2015-1-30 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許睿霖
時間:
2015-1-30 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hi"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳翊民
時間:
2015-1-30 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁證翔
時間:
2015-1-30 10:32
[code#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}][/code]
作者:
許育樺
時間:
2015-1-30 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施正心
時間:
2015-1-30 10:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳鈺晟
時間:
2015-1-30 10:33
標題:
RE: 我的第一支程式
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-1-30 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hi"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-1-30 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾奕帆
時間:
2015-1-30 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許博竣
時間:
2015-1-30 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳彥彰
時間:
2015-1-30 10:36
#include<iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾聖祐
時間:
2015-1-30 10:37
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out 串流
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式開始
{ //主函式的內容
cout<<"hello"<<endl; //利用cout進行輸出, endl代表換行
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦本程式已成功執行
}
複製代碼
作者:
顏宇杰
時間:
2015-1-30 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"shit"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王御丞
時間:
2015-1-30 10:38
#include<iostream>//前置處理指令<標頭檔>含括動作,寫程式的準備動作
#include<cstdlib> //前置處理指令<標頭檔>含括動作,寫程式的準備動作
using namespace std;// 名稱空間
int main()//要執行程式碼
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱霈芸
時間:
2015-1-30 10:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾筱文
時間:
2015-1-30 10:40
#include<iostream>//引入標頭檔<iostream> in&out串流
#include<cstdlib>//引入標頭檔<基本函數庫> c standard library
using namespace std; //使用命名空間std
int main() //主函式開始
{ //主函式的內容
cout<<"hello"<<endl; //輸出hello ,endl代表換行
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦本程式已成功執行
}
複製代碼
作者:
王御丞
時間:
2015-1-30 11:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本輸入輸出
int a;
cin >>a;
cout<< "您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-2-1 10:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2015谷哥人冬令營"<<endl;
cout<<"學生:黃璽安"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2