標題:
我的第一支程式
[打印本頁]
作者:
tonyh
時間:
2019-7-8 11:17
標題:
我的第一支程式
在螢幕上顯示 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到主控台,告知該程式已成功執行
}
複製代碼
作者:
陳龍華
時間:
2019-7-8 13:53
#include <iostream>
#include <cstdlib>
using namespace std;
int main( )
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張淯祺
時間:
2019-7-8 13:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張博程
時間:
2019-7-8 13:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"嗨"<<endl;
system("pause");
return 0 ;
}
//hello
複製代碼
作者:
葉又誠
時間:
2019-7-8 13:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi!world!!!!!!!!!!YA!!!"<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-7-8 13:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl<<endl;
system("pause");
return 0;
作者:
吳秉霖
時間:
2019-7-8 13:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"helo"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱士豪
時間:
2019-7-8 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause")
return0;
}
複製代碼
作者:
王柏諺
時間:
2019-7-8 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林羿丞
時間:
2019-7-8 14:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾博宇
時間:
2019-7-8 14:06
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳昱安
時間:
2019-7-8 14:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello";
system("pause");
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2019-7-8 14:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"helle"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊子毅
時間:
2019-7-8 14:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "hello" << endl;
system("pause");
return 0;
}
複製代碼
作者:
張淯祺
時間:
2019-7-8 14:40
#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;
}
複製代碼
作者:
王銘鴻
時間:
2019-7-8 14:59
本帖最後由 王銘鴻 於 2019-7-8 15:01 編輯
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2