程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#語法練習(8): 函數(2)

C#語法練習(8): 函數(2)

編輯:關於C語言

函數見 return 就返回:

using System;

class MyClass
{
   static int Math(int x, int y)
   {
     return x + y;
     return x * y; /* 執行不了這句 */
   }

   static void Main()
   {
     Console.WriteLine(Math(3,4)); //7
     Console.ReadKey();
   }
}

數組參數:

using System;

class MyClass
{
   static int ArrMax(int[] arr)
   {
     int max = arr[0];
     for (int i = 1; i < arr.Length; i++)
       if (arr[i] > max) max = arr[i];
     return max;
   }

   static void Main()
   {
     int[] ns = { 1,2,3,4,5,4,3,2,1 };
     Console.WriteLine(ArrMax(ns));  //5
     Console.ReadKey();
   }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved