標題:
我的第一支程式
[打印本頁]
作者:
tonyh
時間:
2017-7-4 10:59
標題:
我的第一支程式
本帖最後由 tonyh 於 2017-7-4 11:34 編輯
本帖隱藏的內容需要回復才可以瀏覽
作者:
tonyh
時間:
2017-7-4 11:35
#include<iostream> // input & output stream
#include<cstdlib> // c standard library
using namespace std; //指定命名空間為 std
int main()
{
cout<<"大家好!"<<endl;
system("pause"); //暫停
return 0; //回傳 0 到主控台
}
複製代碼
作者:
蒙鎧柔
時間:
2017-7-4 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hi"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳廷森
時間:
2017-7-4 11:47
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"阿囉哈,:D"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
tonyh
時間:
2017-7-4 11:48
#include<iostream> // input & output stream
#include<cstdlib> // c standard library
using namespace std; //指定命名空間為 std
int main()
{
cout<<"大家好!"<<endl;
system("pause"); //暫停
return 0; //回傳 0 到主控台
}
複製代碼
作者:
莊鎵伃
時間:
2017-7-4 11:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"嗨!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李沛昂
時間:
2017-7-4 11:52
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"你好,我是電腦。"<< endl;
system("pause");
return 0;
複製代碼
作者:
吳睿橙
時間:
2017-7-4 11:52
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭宗富
時間:
2017-7-4 11:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"我是一個廢物電腦"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓翰
時間:
2017-7-4 11:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳守柔
時間:
2017-7-4 11:54
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"My name is Abbie"<<endl;
system("pause") ;
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2017-7-4 11:54
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"ooxx..."<< endl;
system("pause");
return 0;
}
複製代碼
作者:
賴泓奕
時間:
2017-7-4 11:55
#nclude<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"k=2mn/5"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2017-7-5 09:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2