標題:
函數宣告
[打印本頁]
作者:
周政輝
時間:
2018-6-2 13:51
標題:
函數宣告
[hide]#include <cstdlib>
#include <iostream>
using namespace std;
// 定義函數
void Test()
{
cout << "Hello World" << endl;
}
int main() // 主函數
{
// function 函數/方法
// 宣告函數
// 有沒有回傳值(void 不回傳任何東西) 函數的名字 (參數) {}
// 呼叫函數
Test();
system("pause");
return 0;
}
[/hide]
複製代碼
作者:
王駿愷
時間:
2018-6-2 13:53
#include<iostream>
#include<cstdlib>
using namespace std;
void test()
{
cout<<"hello world"<<endl;
}
int main()
{
test();
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2018-6-2 13:53
#include<iostream>
#include<cstdlib>
using namespace std;
void Test()
{
cout<<"hello"<<endl;
}
int main()
{
Test();
system("pause");
return 0;
}
複製代碼
作者:
戴嘉禾
時間:
2018-6-2 13:55
#include<iostream>
#include<cstdlib>
using namespace std;
void test()
{
cout<<"傻眼貓咪"<<endl;
}
int main()
{
test();
system("pause") ;
return 0;
}
複製代碼
作者:
顏詢
時間:
2018-6-2 13:55
#include <cstdlib>
#include <iostream>
using namespace std;
void Test()
{
cout << "Hello World" << endl;
}
int main()
{
Test();
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2018-6-2 13:55
#include <cstdlib>
#include <iostream>
using namespace std;
void Test()
{
cout << "周老師好帥" << endl;
}
int main()
{
Test();
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2018-6-2 13:55
#include <cstdlib>
#include <iostream>
using namespace std;
void test()
{
cout<<"哈"<<endl;
}
int main()
{
test();
system("pause");
return 0;
}
複製代碼
作者:
黃安立
時間:
2018-6-2 14:01
#include <cstdlib>
#include <iostream>
using namespace std;
void Test()
{
cout << "Hello World" << endl;
}
int main()
{
Test();
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2