標題:
第一支程式
[打印本頁]
作者:
張翼安
時間:
2015-9-4 22:27
標題:
第一支程式
在螢幕上顯示 "快樂C++" 字樣
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out stream
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式
{
cout<<"快樂C++"<<endl;
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦,程式已成功執行
}
複製代碼
作者:
張文擇
時間:
2015-9-5 11:58
#include <iostream> //引入標頭檔 <基本輸入輸出>
#include <cstdlib> //引入標頭檔 <基本函示庫>
using namespace std; //使用命名空間
int main() //主函式
{
cout<<"快樂c++"<<endl;
system("pause");
return 0; //暫停
}system("pause"); //回傳0到主控台告訴電腦,程式已成功執行
複製代碼
作者:
吳承勳
時間:
2015-9-5 11:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << "快樂C++**++//"<< endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-9-5 11:59
#include<iostream> //標頭檔
#include<cstdlib> //標頭檔
using namespace std; //使用命名空間std
int main() //主函式
{ //主函式開始
cout<<"Welcomt To Facebook"<<endl; //輸入 Whelcome To Facebook 換行
system("pause"); //暫停畫面
return 0; //回傳0告知程式已經正確執行
} //主函式結束
複製代碼
作者:
蔡季樺
時間:
2015-9-5 12:02
#include<iostream> //標頭檔
#include<cstdlib> //標頭檔
using namespace std; //命名空間
int main() //主函式
{
cout<<"快樂c++"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-9-5 12:02
#include<iostream> //入標題檔引 <基本輸入輸出>
#include<cstdlib> //入標題檔引 <基本函式庫>
using namespace std; //使用命名空間
int main() //主函式 P.S.;=結束
{
cout<<"I am a teacher"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林育名
時間:
2015-9-5 12:04
#include<iostream> // 引入標頭檔 <基本輸入輸出>
#include<stdlib> //已入標頭檔 < 基本涵式庫>
using namespace std; // 使用命名空間 std
int main() //主涵式
{
cout<<"快樂c++"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-9-5 12:07
#include<iostream> //
#include<cstblib> //
using namespace std; //
int main() //主函式 //
{ //
cout<<"475454556"; //
system("pause"); //
return 0; //
}
複製代碼
作者:
蔡季樺
時間:
2015-9-12 11:38
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out stream
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式
{
string name="蔡季樺",school="福東國小";
int age=11;
float height=150.2,weight=40.3;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年"<<age<<"歲"<<endl;
cout<<"身高"<<height<<"公分"<<endl;
cout<<"體重"<<weight<<"公斤"<<endl;
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦,程式已成功執行
}
複製代碼
作者:
蔡季樺
時間:
2015-9-12 11:59
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out stream
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式
{
int x=1,y=1;
cout<<"當y的值為"<<y<<",x的值為"<<x<<"時"<<endl;
cout<<"y+x"<<x+y<<endl;
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦,程式已成功執行
}
複製代碼
作者:
任立宇
時間:
2015-9-20 14:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main();
int x=1,y=1;
cout<<"當y的值為"<<y<<",x的值為"<<x<<"時"<<endl;
cout<<"y+x"<<x+y<<endl;
system("pause");
return 0
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2