返回列表 發帖

函式的建立與執行 (一)

宣告變數->變數型態 變數名字
int a
宣告函式->回傳型態 函式名字()
回傳型態(沒有回傳void)
void hello()
int add()


自訂函式:
1. hello()
2. myPlus(int x,int y,int z)

Tip:先定義才能呼叫
定義時小心保留字(給變數取名字的時候也是)

第一階段hello()
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //hello函式
  5. void hello(){
  6.         cout<<"這是hello函式"<<endl;
  7. }
  8. //宣告變數->變數型態 變數名字
  9. //int a
  10. //宣告函式->回傳型態 函式名字()

  11. //主函式
  12. int main(){
  13.        
  14.         cout<<"這是主函式的hello"<<endl;
  15.         hello();
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼
第二階段myPlus(int x,int y,int z)
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //hello函式
  5. void hello(){
  6.         cout<<"這是hello函式"<<endl;
  7. }
  8. //宣告變數->變數型態 變數名字
  9. //int a
  10. //宣告函式->回傳型態 函式名字()
  11. //int myPlus
  12. //沒有回傳值時 void


  13. int myPlus(int x,int y,int z){
  14.         return x+y+z;
  15. }

  16. //主函式
  17. int main(){
  18.         cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  19.         cout<<"這是主函式的hello"<<endl;
  20.         hello();
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表