標題:
函式的建立與執行 (一)
[打印本頁]
作者:
鄭繼威
時間:
2022-5-19 22:05
標題:
函式的建立與執行 (一)
本帖最後由 鄭繼威 於 2022-6-11 11:18 編輯
自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
Tip:先定義再呼叫
定義時小心
保留字
第一階段hello()
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//主函式
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
第二階段myPlus(int x,int y,int z)
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//int myPlus
//沒有回傳值時 void
int myPlus(int x,int y,int z){
return x+y+z;
}
//主函式
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-5-21 10:31
#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;
}
複製代碼
作者:
田家齊
時間:
2022-5-21 10:43
本帖最後由 田家齊 於 2022-5-21 11:33 編輯
#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()
{
cout<<"myplus 1+2+3="<<myplus(1,2,3)<<endl;
cout<<"這是主函式"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-5-21 10:43
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
void hello()
{
cout<<"hello"<<endl;
}
int main()
{
hello();
cout<<"test"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-5-21 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"hello"<<endl;
}
int main()
{
hello();
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-5-21 10:47
本帖最後由 許宸瑀 於 2022-5-21 11:38 編輯
#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(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-5-21 10:47
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"HELLO!!"<<endl;
}
int main()
{
hello();
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-5-21 10:48
本帖最後由 許馹東 於 2022-5-21 11:32 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"hello"<<endl;
}
int main()
{
hello();
system("pause");
return 0;
}
複製代碼
#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(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-5-21 10:49
本帖最後由 高鋐鈞 於 2022-5-21 11:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
void hello()
{
cout<<"這是hello函式"<<endl;
}
int myplus(int x,int y,int z){
return x+y+z;
}
int main()
{
cout<<myplus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2022-5-21 10:50
本帖最後由 孫子傑 於 2022-5-21 11:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void sb(){
cout<<"這是sb函式"<<endl;
}
int p (int x,int y,int z){
return x+y+z;
}
int main(){
cout<<"p 1+2+3="<<p(1,2,3)<<endl;
cout<<"這是主函式的sb"<<endl;
sb();
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void sb(){
cout<<"這是sb函式"<<endl;
}
int main(){
cout<<"這是主函式的sb"<<endl;
sb();
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-5-21 10:53
本帖最後由 徐譽豈 於 2022-5-21 11:39 編輯
#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(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"這是hello函式"<<endl;
}
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-5-21 11:30
#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()
{
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-5-21 11:37
#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="<<myPlus(1,2,3)<<endl;
cout<<"主函式的hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-5-21 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//主函式
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-5-21 11:40
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"這是hello函式"<<endl;
}
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
#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()
{
cout<<"myplus 1+2+3="<<myplus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
林紘憲
時間:
2022-5-21 11:40
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//int myPlus
//沒有回傳值時 void
int myPlus(int x,int y,int z){
return x+y+z;
}
//主函式
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-6-25 09:40
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"這是hello函式"<<endl;
}
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2