標題:
我的第一支程式
[打印本頁]
作者:
鄭繼威
時間:
2022-7-2 14:07
標題:
我的第一支程式
本帖最後由 鄭繼威 於 2022-7-9 15:04 編輯
在螢幕上顯示 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-7-2 15:29
本帖最後由 鄭繼威 於 2022-7-9 14:15 編輯
#include<iostream> //IO=input&output 引入輸入輸出串流函式庫
#include<cstdlib> //C standard library 引入C標準函式庫
using namespace std; //指定命名空間為std
//主程式
int main(){
//你要做的事
//cout輸出 <<串接符號(當方法,變數,字串要一起使用時) endl 換行
cout<<"hello world1"<<endl;
cout<<"hello world2"<<endl;
system("pause"); //讓黑色畫面暫停
return 0; //告知主程式已完成
}
複製代碼
作者:
林雋喆
時間:
2022-7-6 11:16
#include<iostream //IO=input&output
#include<cstdlib //C standard libary
using namespace std;
//主程式
int main(){
cout<<"hello would1"<<end1;
cout<<"hello would2"<<end1;
system("pause");
return 0;}
複製代碼
作者:
羅紹齊
時間:
2022-7-7 16:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"hello world1"<<endl;
cout<<"hello world2"<<endl;
system("PAUSE");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-7-8 21:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-7-9 15:11
#include<iostream> //IO=input&output 引入輸入輸出串流函式庫
#include<cstdlib> //C standard library C標準函式庫
using namespace std; //指定命名空間為std
//主程式
int main(){
//你要做的事
//cout 輸出 <<串接符號(當方法,字串,變數要一起使用時) endl換行
cout<<"Hello World1"<<endl;
cout<<"Hello World2"<<endl;
system("pause"); //讓黑色畫面暫停
return 0; //告知主程式已完成執行
}
複製代碼
作者:
王睿荻
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Blox Fruit"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello World!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //主函式
{
cout<<"Hello World"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
羅紹齊
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello World!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello World1"<<endl;
cout<<"Hello World2"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
羅暐傑
時間:
2022-7-9 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello World!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2022-7-9 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello would1"<<endl;
cout<<"hello would2"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-7-9 15:13
#include<iostream> //引入<基本輸出>原始檔
#include<cstdlib> //引入<標準含市庫>標頭擋C standard library
using namespace std; //指定命名空間std
int main() //主函式
{
cout<<"Hello "; //cout輸出 endl換行
cout<<"World"<<endl;
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
陳泓亦
時間:
2022-7-9 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
cout<<"bye bye"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾瑄羽
時間:
2022-7-9 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello world1"<<endl;
cout<<"hello world2"<<endl;
cout<<"hello"<<endl;
system("pause");
return 0;
複製代碼
作者:
葉佳和
時間:
2022-7-9 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello World"<<endl;
cout<<"Hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2022-7-9 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧禹丞
時間:
2022-7-9 15:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-7-16 14:08
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello World"<<endl;
cout<<"Hello world"
}
\\我的電腦是真的爛 阿我其實是國一生國二 電腦好難 好想打print 我不想打一堆
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2