標題:
我的標準程式碼註解
[打印本頁]
作者:
游東祥
時間:
2013-8-13 09:51
標題:
我的標準程式碼註解
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
//-----------------
// 顯示 hello 文字
//-----------------
cout << "hello";
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
徐義翔
時間:
2013-8-13 10:00
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main'開始執行
{
cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
黃崇維
時間:
2013-8-13 10:00
#include<iostream> //引認輸出輸入的指令
#include<cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從" main "開始
{
cout<<"hello"<<endl;
system("pause"); //程式暫停
return 0; //回報程式運作正常
}
複製代碼
作者:
徐義翔
時間:
2013-8-13 10:01
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main'開始執行
{
cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
蔡凱益
時間:
2013-8-13 10:01
#include <iostream> //引入輸出.輸入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名
int main() //程式從"main"執行
{
cout<<"hello"<<endl;
system("pause"); //讓程式暫停
return 0; //讓程式確認證確
}
複製代碼
作者:
陳寧莉
時間:
2013-8-13 10:01
#include <iostream> //引入輸出.入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名
int main() //程式從"main"執行
{
cout<<"令人覺得毛毛的照片"<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
蘇昱安
時間:
2013-8-13 10:01
#include <iostream> //引用輸出輸入
#include <cstdlib> //引用c的表準涵式
using namespace std; //使用標準涵式命名空間
int main() //程式從main開始
{
cout<<"hello"<<endl;
system("pause"); //程式暫停
return 0; //運作正常
}
複製代碼
作者:
蔡秉修
時間:
2013-8-13 10:02
#include <iostream> //引入輸出輸入的程式碼
#include <cstdlib> //使用c的標準函式庫
using namespace std;//使用命名空間
int main() //開始執行程式
{
cout << "hello" << endl;
system("pause");//程式暫停
return 0; //告訴程式運作正確
}
複製代碼
作者:
張峻瑋
時間:
2013-8-13 10:02
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main"開始執行
{
cout<<"hello"<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
徐義翔
時間:
2013-8-13 10:03
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main'開始執行
{
cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
林以璿
時間:
2013-8-13 10:04
#include<iostream> //引入輸出輸入
#include<cstdlib>? //c 的標準函式
using namespace std; //名稱空間
int main () //從始開始執行
{
cout<<"hello"<<endl;
system("pause"); //程式暫停
return 0; //運作正常
}
複製代碼
作者:
吳宗桓
時間:
2013-8-13 10:07
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
using namespace std; //用標準函式庫命名空間
int main() //程式從"main"開始執行
{
cout <<"hello jason 吳宗桓"<<endl;
system("pause"); //讓程式暫停
return 0; //讓程式確認正確
}
複製代碼
作者:
施伯叡
時間:
2013-8-14 08:57
#include <iostream> //引入輸出輸入
#include <cstdlib> //使用C的標準函式庫
using namespace std; //使用命名空間
int main() //開始執行程式
{
cout<<"hello"<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正常
}
複製代碼
作者:
李恆
時間:
2013-8-14 08:59
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
//-----------------
// 顯示 hello 文字
//-----------------
cout << "hello";
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
柯璟廷
時間:
2013-8-14 09:00
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
//-----------------
// 顯示 hello 文字
//-----------------
cout << "hello";
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
作者:
張彥承
時間:
2013-8-14 09:06
#include <iostream> // 引入輸出輸入的指令
#include <cstdlib> // 引入c'S STANDARD 函式
using namespace std; // 使用標準函式庫命名
int main () // 程式從"MAIN"開始進行
{
cout<<"I never feel nervous trying,I only fear nervous dying<<"<<endl;
system("pause");//使程式暫停
return 0; // 回報程式運作正確
}
複製代碼
作者:
周雍程
時間:
2013-8-14 09:15
#include <iostream> //引入輸出輸入引入
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式命名空間
int main() //開始執行
{
cout<<"hello"<<endl;
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
林以諾
時間:
2013-8-14 09:16
#include<iostream> //引入輸出輸入
#include<cstdlib>? //c 的標準函式
using namespace std; //名稱空間
int main () //從始開始執行
{
cout<<"hello"<<endl;
system("pause"); //程式暫停
return 0; //運作正常
}
複製代碼
作者:
蔡凱益
時間:
2013-8-14 09:16
include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main'開始執行
{
cout<<"hello "<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
複製代碼
作者:
薛景謙
時間:
2013-8-14 09:16
#include<iostream> //引入輸出輸入
#include<cstdlib> //使用C的標準函式庫
using namespace std; //使用命名空間
int main() //開始執行程式
{
system("pause"); //程式暫停
return 0; // 告訴程式運作正確
}
複製代碼
作者:
周雍程
時間:
2013-8-14 09:16
#include <iostream> //引入輸出輸入
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式命名空間
int main() //開始執行
{
cout<<"hello"<<endl;
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
張郁庭
時間:
2013-8-14 09:28
回復
20#
薛景謙
#include <iostream> // 引入輸出輸入
#include <cstdlib> //C的標準函式
using namespace std; // 使用標準函式庫命名空間
int main() //要執行的程式碼
{
cout<<"hello"<<endl; //顯示hellow
system("pause"); //暫停
return 0; //告訴電腦程式完成
}
複製代碼
作者:
張郁偵
時間:
2013-8-14 10:28
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //引入c的標準函式庫命名空間
int main() //程式從開始執行
{
cout<<"hello"<<endl;
system("pause"); //讓程式暫停
return 0; //回報程式運作正確
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2