標題:
第一支程式
[打印本頁]
作者:
tonyh
時間:
2016-3-5 10:09
標題:
第一支程式
在執行窗格中顯示 "快樂C++" 字樣
#include<iostream> //input & output
#include<cstdlib> //standard liburary
using namespace std;
int main() //主函式
{
cout<<"快樂C++ "<<endl;
system("pause");
return 0; //回傳0 告訴電腦本程式已成功結束
}
複製代碼
作者:
tonyh
時間:
2016-3-5 10:46
#include<iostream> //input & output <基本輸入輸出>
#include<cstdlib> //c standard library <標準函示庫>
using namespace std; //指定命名空間為 std
int main() //主函式
{
cout<<"快樂C++"<<endl;
system("pause");
return 0; //回傳0至主控台 回報程式已成功執行
}
/*
int add(int a,int b)
{
return a+b;
}
add(5,3) ---> 8
*/
複製代碼
作者:
方宥鈞
時間:
2016-3-5 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂C++真好玩 我超喜歡的 "<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-3-5 10:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂C++"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-3-5 10:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
cout<<"快樂C++"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-3-5 13:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂c++!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-3-5 13:59
#include<iosstream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂c++"<<endl;
system("pause")
return 0;
}
複製代碼
作者:
高允懋
時間:
2016-3-5 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂C++"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張孟軒
時間:
2016-3-12 09:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂c++"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-3-12 14:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"快樂c++"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2