標題:
自訂函數
[打印本頁]
作者:
周政輝
時間:
2017-10-31 17:58
標題:
自訂函數
自訂義一個函數,並且看能否能顯示在螢幕上
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
// 函數(方法)
// 資料型態(回傳的內容) 函數名字 () {}
// 定義函數
int Hello()
{
return 100;
}
int main() // 主函式 主程式
{
// 呼叫函數
cout << Hello() << endl;
system("pause");
return 0;
}
複製代碼
作者:
顏羽彤
時間:
2017-10-31 18:00
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int Hello()
{
return 100;
}
int main()
{
cout<< Hello()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張閎鈞
時間:
2017-10-31 18:01
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int a()
{
return 100;
}
int main()
{
cout<<a()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫沛庭
時間:
2017-10-31 18:03
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int num()
{
return 188;
}
int main()
{
cout<<num()<<endl;
system("pause");
return 0;
}
作者:
張凱婷
時間:
2017-10-31 18:04
本帖最後由 張凱婷 於 2017-10-31 18:14 編輯
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int Hello()
{
return 100;
}
int main()
{
cout<< Hello()<<endl;
system("pause");
return 0;
}
作者:
巫晉宇
時間:
2017-10-31 18:14
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int ya()
{return 100;
}
int main()
{
cout<<ya()<<endl;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2