標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2017-7-29 14:00
標題:
函式的建立與執行 (一)
自訂函式:
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;
}
複製代碼
作者:
蕭澧邦
時間:
2017-7-29 14:02
#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;
}
複製代碼
作者:
許紘誌
時間:
2017-7-29 14:04
#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(1,2,3)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2017-7-29 14:10
#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(1,2,3)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2017-8-4 19:05
#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;
}
複製代碼
作者:
洪榜蔓
時間:
2017-8-11 19:42
#include<iostream>
#include<cstdlib>
#include<cmath>
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(1,2,3)<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2