標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2016-12-3 11:41
標題:
函式的建立與執行 (一)
本帖最後由 tonyh 於 2018-6-20 16:28 編輯
自訂函式:
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;
}
複製代碼
作者:
黃茂勛
時間:
2016-12-3 12:04
本帖最後由 黃茂勛 於 2016-12-9 20:10 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void stupid()
{
cout<<"You are stupid"<<endl;
}
int myF(int x, int y)
{
return x+y;
}
int main()
{
stupid();
cout<<myF(80,7)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2016-12-4 07:54
本帖最後由 林侑成 於 2016-12-8 20:50 編輯
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
void fuck()
{
cout<<"FUCK!!\tFUCK!!\tFUCK!!\tFUCK!!\tFUCK!!"<<endl;
}
int iPlus(double x,double y,double z)
{
return x*y*z;
}
int main()
{
re:
fuck();
cout<<iPlus(1012001,5,6)<<endl;
_sleep(1000);
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-12-4 11:07
#include<iostream>
#include<cstdlib>
using namespace std;
void test1()
{
cout<<"jfhjkshgjkdfhgkjdfhgkdhglkdkakjahdjkahdjksdhfkjhskjfhsdkfhsdkfhsdkjfhsdjkfhsdjkfhdsjk";
}
int test2(int a,int b,int c)
{
return a*b*c;
}
int main()
{
test1();
cout<<endl;
cout<<test2(213,112,255);
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void test1();
int test2(int,int,int);
int main()
{
test1();
cout<<endl;
cout<<test2(213,112,255);
system("pause");
return 0;
}
void test1()
{
cout<<"jfhjkshgjkdfhgkjdfhgkdhglkdkakjahdjkahdjksdhfkjhskjfhsdkfhsdkfhsdkjfhsdjkfhsdjkfhdsjk";
}
int test2(int a,int b,int c)
{
return a*b*c;
}
複製代碼
作者:
陸長辰
時間:
2016-12-10 10:38
#include<iostream>
#include<cstdlib>
using namespace std;
void gg()
{
cout<<"GG inin der "<<endl;
}
int main()
{
gg();
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2