標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2021-6-5 18:57
標題:
函式的建立與執行 (一)
自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
余柏緯
時間:
2021-6-5 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(5128514560000,4565645610000,4548790000)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2021-6-5 20:43
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2021-6-5 20:43
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(458445454,94878787,486666)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-6-5 20:44
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myplus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myplus(9,9,9)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
俞成章
時間:
2021-6-5 20:45
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(5128514560000,4565645610000,4548790000)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2021-6-5 20:46
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
許洧熏
時間:
2021-6-5 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
作者:
呂尚霖
時間:
2021-6-5 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HI!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2021-6-5 20:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
void hello()
{
cout<<"Hello"<<endl;
}
int myPlus(int x,y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2