標題:
【1-2】我的第一支程式
[打印本頁]
作者:
王瑞喻
時間:
2020-2-5 14:59
標題:
【1-2】我的第一支程式
在螢幕上顯示 hello 字樣.
#include<iostream> //引入 <基本輸入輸出> 標頭檔 in & out stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
cout<<"hello"<<endl; //cout輸出 endl換行
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
俞成章
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"看到的人是笨蛋"<<endl;
system("pause") ;
return 0;
}
作者:
邱冠睿
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout <<"ㄅㄆㄇㄈ"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許洺淪
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳芷愉
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林子宸
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
作者:
蔡睿澤
時間:
2020-2-6 14:00
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"yeeeeeeeeeeeeeeeeeeeeeeeeeeeee"<<endl;
system("pause");
return 0;
}
複製代碼
[/code]
作者:
郭典丞
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"魔獸世界 非常好玩"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
簡世釗
時間:
2020-2-6 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2020-2-6 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"看到的人是87"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
1090121_1
時間:
2020-2-6 14:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout <<"Hi!"<<endl;
return 0;
system("pause");
}
複製代碼
system("pause");
}[code/]
作者:
陳暐勛
時間:
2020-2-6 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"yee"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
俞成章
時間:
2020-2-6 14:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"看到的人是笨蛋"<<endl;
system("pause") ;
return 0;
}
複製代碼
作者:
張全祐
時間:
2020-2-6 14:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
簡世釗
時間:
2020-2-6 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許洺淪
時間:
2020-2-7 15:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1000; i>=0; i=i-5)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2