標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2018-7-23 19:49
標題:
函式的建立與執行 (一)
自訂函式:
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;
}
複製代碼
作者:
黃宇綸
時間:
2018-7-23 20:25
#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;
}
複製代碼
作者:
曾堂桂
時間:
2018-7-23 20:26
#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,3,4)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2018-7-23 20:26
#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;
}
複製代碼
作者:
盧佑芯
時間:
2018-7-23 20:27
#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;
}
}
複製代碼
作者:
李沛昂
時間:
2018-7-23 20:28
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
void hello()
{
for(int i=1;i<=3;i++)
cout<<"hello!!!!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,3,4)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧佑恩
時間:
2018-7-23 20:33
#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;
}
複製代碼
作者:
戴嘉禾
時間:
2018-7-23 20:33
#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;
}
複製代碼
作者:
洪翊展
時間:
2018-7-30 18:36
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(3,6,7)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"hello"<<endl;
}
int myPlus(int x,int y ,int z)
{
return x+y+z;
}
複製代碼
作者:
洪翊庭
時間:
2018-7-30 18:37
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
void hello()
{
cout<<"hello"<<endl;
}
int myplus(int a,int b,int c)
{
return a+b+c;
}
int main()
{
hello();
cout<<myplus(6,5,4)<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2