標題:
函式的建立與執行 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-7-25 09:19
標題:
函式的建立與執行 (一)
自訂函式:
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;
}
複製代碼
作者:
張淯祺
時間:
2020-7-25 11:54
#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;
}
複製代碼
作者:
李穎俊
時間:
2020-7-25 11:54
本帖最後由 李穎俊 於 2020-8-1 10:48 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return a+b+c;
}
int main()
{
hello();
cout<<myPlus(2,6,5)<<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;
}
複製代碼
作者:
劉愷鈞
時間:
2020-7-25 12:00
#include<iostream>
#include<cstdlib>
#include<ctime>
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;
}
複製代碼
作者:
龔品誠
時間:
2020-7-25 12:02
本帖最後由 龔品誠 於 2020-8-1 10:50 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
void running()
{
int speed=1;
for(int i=0; i<=100; i++)
{
if(i<10)
cout<<" "<<i<<"% 載入中";
else if(i<100)
cout<<" "<<i<<"% 載入中";
else
cout<<i<<"% 完成!";
if(i<10)
cout<<"□□□□□□□□□□"<<endl;
else if(i<20)
cout<<"■□□□□□□□□□"<<endl;
else if(i<30)
cout<<"■■□□□□□□□□"<<endl;
else if(i<40)
cout<<"■■■□□□□□□□"<<endl;
else if(i<50)
cout<<"■■■■□□□□□□"<<endl;
else if(i<60)
cout<<"■■■■■□□□□□"<<endl;
else if(i<70)
cout<<"■■■■■■□□□□"<<endl;
else if(i<80)
cout<<"■■■■■■■□□□"<<endl;
else if(i<90)
cout<<"■■■■■■■■□□"<<endl;
else if(i<100)
cout<<"■■■■■■■■■□"<<endl;
else if(i==100)
{
cout<<"■■■■■■■■■■"<<endl;
system("pause");
}
_sleep(speed);
system("cls");
}
}
int time(int x,int y,int z)
{
return x*y+x*z;
}
int main()
{
running();
cout<<time(5,0.2,8);
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
void running();
int time(int x,int y,int z);
int main()
{
running();
cout<<time(5,0.2,8);
system("pause");
return 0;
}
void running()
{
int speed=5;
for(int i=0; i<=100; i++)
{
if(i<10)
cout<<" "<<i<<"% 載入中";
else if(i<100)
cout<<" "<<i<<"% 載入中";
else
cout<<i<<"% 完成!";
if(i<10)
cout<<"□□□□□□□□□□"<<endl;
else if(i<20)
cout<<"■□□□□□□□□□"<<endl;
else if(i<30)
cout<<"■■□□□□□□□□"<<endl;
else if(i<40)
cout<<"■■■□□□□□□□"<<endl;
else if(i<50)
cout<<"■■■■□□□□□□"<<endl;
else if(i<60)
cout<<"■■■■■□□□□□"<<endl;
else if(i<70)
cout<<"■■■■■■□□□□"<<endl;
else if(i<80)
cout<<"■■■■■■■□□□"<<endl;
else if(i<90)
cout<<"■■■■■■■■□□"<<endl;
else if(i<100)
cout<<"■■■■■■■■■□"<<endl;
else if(i==100)
{
cout<<"■■■■■■■■■■"<<endl;
system("pause");
}
_sleep(speed);
system("cls");
}
}
int time(int x,int y,int z)
{
return x*y+x*z;
}
複製代碼
作者:
林羿丞
時間:
2020-8-1 10:30
本帖最後由 林羿丞 於 2020-8-1 10:50 編輯
#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(640000,50420,1200000)<<endl;
system("pause");
return 0;
}
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(666,666,888)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
朱閎聿
時間:
2020-8-1 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"Hello"<<endl;
}
int myPuls(int x, int y, int z)
{
return x+y+z;
}
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2020-8-1 10:40
#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;
}
複製代碼
作者:
張淯祺
時間:
2020-8-1 10:48
#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;
}
複製代碼
作者:
朱閎聿
時間:
2020-8-1 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(10000000,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
王銘鴻
時間:
2020-8-1 10:52
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2