標題:
我的第一支程式
[打印本頁]
作者:
周政輝
時間:
2017-3-4 09:16
標題:
我的第一支程式
在螢幕上顯示 hello 字樣.
#include<cstdlib> //載入一些系統的資源檔 library
#include<iostream> //EX: cout cin
using namespace std; //告訴我們的編譯器 每一行程式後面加上; 目的在於讓程式碼存放在namespace當中
int main() //C++基本框架 (所有的程式碼都需要寫在 main())
{
cout << "HelloWorld" <<endl; //字串
system("pause"); //當按下任意鍵時 自動關閉程式
return 0;
}
複製代碼
作者:
莊旻叡
時間:
2017-3-4 09:27
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
cout<<"hellowould"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高品溫
時間:
2017-3-4 09:29
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello world"<<endl;
cout<<"see you world\r\n";
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-3-4 09:30
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
cout<<"yee"<<endl;
system("pause");
return 0;
}
[code][/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2