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