標題:
我的第一支程式
[打印本頁]
作者:
tonyh
時間:
2017-9-18 18:16
標題:
我的第一支程式
在螢幕上顯示 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到主控台,告知該程式已成功執行
}
複製代碼
作者:
曾堂桂
時間:
2017-9-18 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"大家好" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
彭煥宇
時間:
2017-9-18 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"我是帥哥"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧佑恩
時間:
2017-9-18 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"天啊!!我好帥!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧佑芯
時間:
2017-9-18 20:23
#include<iostream>
#includej<cstdlib>
using namespace std;
int main()
{
cout<<"大家好"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪翊展
時間:
2017-9-18 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"???"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李治毅
時間:
2017-9-18 20:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"大家好"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪翊庭
時間:
2017-9-18 20:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"大家好 "<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子晏
時間:
2017-9-18 20:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hellow"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪啟詮
時間:
2017-9-18 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"I'm very handsome!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪翊展
時間:
2017-9-18 20:28
回復
6#
洪翊展
作者:
趙培宇
時間:
2017-9-18 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"大家好.我是阿宇"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧佑恩
時間:
2017-9-18 20:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"天啊!!我好帥!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪翊庭
時間:
2017-11-27 20:50
作者:
洪啓銓
時間:
2017-12-4 21:01
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a,b,c,d,e,f,g,h,i;
cout<<"請依序輸入三個數:";
cin>>a>>b>>c;
d = a>b?a:b;
e = d>c?d:c;
f = a>b?a:b;
g = d>c?d:c;
h = a>b?a:b;
i = d>c?d:c;
cout<<"三數中最大的數為: "<<e<<endl<<endl;
cout<<"三數中中間的數為: "<<d<<endl<<endl;
cout<<"三數中最小的數為: "<<f<<endl<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2