標題:
我的第一支程式
[打印本頁]
作者:
tonyh
時間:
2016-8-2 11:25
標題:
我的第一支程式
在螢幕上顯示 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到主控台,告知該程式已成功執行
}
複製代碼
作者:
林政昕
時間:
2016-8-2 15:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout <<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耘
時間:
2016-8-2 15:59
#include<iostream> //引入標頭檔 <in out stream>,基本輸入輸出
#include<cstdlib> //引入標頭檔 <c standard library>,標準函式庫
using namespace std; //指定命民空間
int main() //主函式
{
cout<<"happy 每一天"<<endl;
system("pause"); //畫面暫停
return 0; //回傳0至主控台,告知程式已成功執行並結束
}
複製代碼
作者:
許博堯
時間:
2016-8-2 15:59
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許紘誌
時間:
2016-8-2 16:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello 你好呀"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪巧芸
時間:
2016-8-2 16:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Hellow I am the computer!Nice to meet you!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾堂桂
時間:
2016-8-2 16:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宋秉軒
時間:
2016-8-2 16:02
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃謙儒
時間:
2016-8-2 16:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁苡熏
時間:
2016-8-2 16:04
#include(iostream) //引入標頭檔
#include(cstdlib) // 引入標頭檔
using namespace std; //指定命名空間
int main() //主函式
{
cout<<"hello"<<endl;
system("pause");//畫面暫停
return 0; //回傳0至主控台,告知程式已成功執行並結束
}
複製代碼
作者:
楊采真
時間:
2016-8-2 16:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"喔..........."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許娟慈
時間:
2016-8-2 16:08
本帖最後由 許娟慈 於 2016-8-2 16:09 編輯
#include<iostream>//引入標頭檔<in&ut stream>,基本輸入出
#incude<cstdlib>//引入標頭檔<c stantared library>,標準函式庫
using namespacestd;//主函式
[
cout<<"hello"<<endl;
system("pause"); //畫面暫停
return0; //回傳0至主控台告知程式已成功執行並結束
複製代碼
作者:
鍾瀚磊
時間:
2016-8-2 16:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"你好,歡迎使用此程式"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許博堯
時間:
2016-8-2 19:54
#include <iostream> //引入標頭檔 <in & out stream> , 基本輸入輸出
#include <cstdlib> // 引入標頭檔 <c standard library> , 標準函式庫
using namespace std; //指定命名空間
int main() //主函式
{
cout<<"hello"<< endl;
system("pause"); //畫面暫停
return 0; //回傳 0 至主控台 , 告知程式已成功執行並結束
}
複製代碼
作者:
謝東宏
時間:
2016-8-2 20:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello 你好"<<endl<<endl<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2