標題:
我的第一支程式
[打印本頁]
作者:
鄭繼威
時間:
2022-3-1 22:50
標題:
我的第一支程式
本帖最後由 鄭繼威 於 2022-7-16 14:19 編輯
在螢幕上顯示 hello 字樣.
#include<iostream> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
//你要做的事
cout<<"hello"<<endl; //cout輸出 endl換行
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
// ()小括號
// []中括號
// {}大括號
作者:
鄭繼威
時間:
2022-3-2 20:32
#include<iostream> //基本輸入輸出函式庫
#include<cstdlib> //c 標準函式庫
using namespace std; //指定命名空間為std
int main()
{
cout<<"hello"<<endl; //cout 輸出 <<串接符號 endl= end line 換行
system("pause"); //讓黑色畫面暫停
return 0;
}
複製代碼
作者:
黃柏青
時間:
2022-3-2 20:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-3-2 20:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-3-2 20:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
閻敬凭
時間:
2022-3-2 20:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-3-2 20:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
齊振睿
時間:
2022-3-2 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"hello"<<endl;
system("pause");
return 0;
複製代碼
作者:
黃裕恩
時間:
2022-3-9 21:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃裕恩", school="新上國小";
int age=9;
float h=140.1, w=38.5;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<" 歲"<<endl;
cout<<"身高: "<<h<<" 公分"<<endl;
cout<<"體重: "<<w<<" 公斤"<<endl;
system("pause");
return 0;
}
作者:
林劭澧
時間:
2022-3-14 20:14
本帖最後由 林劭澧 於 2022-3-14 20:25 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main( )
{
cout<<"hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-3-14 20:22
本帖最後由 林劭杰 於 2022-3-14 20:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hallo world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-4-22 20:27
#include<iostream> //引入基本輸入輸出函式庫 input&output stream
#include<cstdlib> //引入C標準函式庫 C standard libary
using namespace std; //指定命名空間為std
//主函式/主程式
int main()
{
//註解->給人看
//你要做的事
cout<<"hello"<<endl; //cout->輸出 <<串接符號 endl->結束並換行
system("pause"); //system->系統,pause->暫停
return 0; //return->回傳,告知主程式已經完成
}
複製代碼
作者:
連翊恩
時間:
2022-12-28 21:06
code
複製代碼
[code][/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2