標題:
我的第一支程式
[打印本頁]
作者:
陳育霖
時間:
2023-8-26 08:54
標題:
我的第一支程式
在螢幕上顯示 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到主控台,告知該程式已成功執行
}
複製代碼
作者:
陳育霖
時間:
2023-8-26 20:51
#include<iostream> //基本輸入輸出標頭檔
#include<cstdlib> //c語言 std = standard 標準的 lib = library 函式庫
using namespace std; //使用命名空間為std
int main() //主程式
{
cout << "hello" << endl << "你好" << endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子瑞
時間:
2023-8-26 20:52
本帖最後由 黃子瑞 於 2023-10-25 21:22 編輯
#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到主控台,告知該程式已成功執行
}
複製代碼
作者:
蘇巳權
時間:
2023-8-26 20:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊洺杰
時間:
2023-8-26 20:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
cout <<"hello"<<endl<<"你好"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉子綾
時間:
2023-8-26 20:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout <<"hello" <<endl
system("pause");
return 0;
}
複製代碼
作者:
王亭婷
時間:
2023-8-26 20:53
#include<iostream>//引入
#include<cstdlib>//c語言 std=standard 標準的 lib=library
using namespace std;//使用命名空間為std
int main()//主程式
{
cout<<"哈囉"<< endl <<"你好"<<endl;
system("pause");
return 0;
}
作者:
王亭婷
時間:
2023-8-26 20:54
#include<iostream>//引入
#include<cstdlib>//c語言 std=standard 標準的 lib=library
using namespace std;//使用命名空間為std
int main()//主程式
{
cout<<"哈囉"<< endl <<"你好"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃詠婕
時間:
2023-8-26 20:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello"<<endl<<"你好"<<endl<<"呵呵呵..."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈思叡
時間:
2023-8-26 20:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳品瑞
時間:
2023-8-26 21:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout <<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張淙鈞
時間:
2023-8-26 21:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
cout<<"hello 123"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝崇亘
時間:
2023-8-26 21:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
cout <<"3.1415926535897932384626433"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林靖庭
時間:
2023-8-26 21:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
詠綺
時間:
2023-9-8 17:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李冠霖
時間:
2023-10-5 19:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl<<"siri"<<endl<<123<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祈
時間:
2023-11-4 09:21
#include<iostream> //引入 iuput & ouput <基本輸入輸出>標頭檔
#include<cstdlib> //引入 <標準函式庫>標頭檔 c standar library
using namespace std; //指定命名空間為std
int main() //主函式
{
cout<<"hello"<<endl;
system("pause");
return 0; //回傳0到主控台,告知該已成功執行
}
複製代碼
作者:
陳宥澄
時間:
2023-11-11 20:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n=0,y,x,z;
cout << "請輸入要從幾開始加: ";
cin >> y;
cout << "請輸入要加到幾:";
cin >> x;
cout << "請輸入要每次要加幾: ";
cin >> z;
for(int i=y; i<=x; i=i+z)
{
n = n+i;
}
cout << y << "加到" << x << "的" << z <<"倍數總和為" << n << "\n";
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2