Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में सरणी में अंतिम तत्व की अनुक्रमणिका ढूँढना

सरणी में अंतिम तत्व की अनुक्रमणिका खोजने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
public class Demo {
   public static void Main(){
      string[] products = new string[] { "Andy", "Mark", "Gary", "Andre"};
      Console.WriteLine("One or more name begin with 'A'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("A")));
      Console.WriteLine("Is the array having fixed size? = " + products.IsFixedSize);
      Console.WriteLine("Is the array read only? = " + products.IsReadOnly);
      Console.WriteLine("Is the array synchronized? = " + products.IsSynchronized);
      Console.WriteLine("Index of the 1st element = "+products.GetLowerBound(0));
      Console.WriteLine("Index of the last element = "+products.GetUpperBound(0));
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

One or more name begin with 'A'? = True 
Is the array having fixed size? = True Is the array read only? = False
Is the array synchronized? = False Index of the 1st element = 0
Index of the last element = 3

उदाहरण

आइए अब एक और उदाहरण देखें -

using System;
public class Demo {
   public static void Main(){
      string[] products = new string[] { };
      Console.WriteLine("Is the array having fixed size? = " + products.IsFixedSize);
      Console.WriteLine("Is the array read only? = " + products.IsReadOnly);
      Console.WriteLine("Is the array synchronized? = " + products.IsSynchronized);
      Console.WriteLine("Index of the 1st element = "+products.GetLowerBound(0));
      Console.WriteLine("Index of the last element = "+products.GetUpperBound(0));
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Is the array having fixed size? = True Is the array read only? = False
Is the array synchronized? = False Index of the 1st element = 0
Index of the last element = -1

  1. सी # प्रोग्राम एक सरणी में अंतिम मिलान तत्व खोजने के लिए

    अंतिम मिलान तत्व को खोजने के लिए, Array.LastIndexOf विधि का उपयोग करें। यदि तत्व पूर्णांक सरणी में मौजूद नहीं है तो -1 लौटाता है। निम्नलिखित सरणी है - int[] val = { 97, 45, 76, 21, 89, 45 }; अब, मान लें कि आपको एलिमेंट 45 के अंतिम इंडेक्स को खोजने की आवश्यकता है। उसके लिए, Array.LastIndexOf() विधि

  1. सी # प्रोग्राम किसी सरणी से अंतिम तत्व प्राप्त करने के लिए

    सबसे पहले, एक सरणी सेट करें - string[] str = new string[]{    "Java",    "HTML",    "jQuery",    "JavaScript",    "Bootstrap" }; अंतिम तत्व का मान प्राप्त करने के लिए, लंबाई प्राप्त करें और निम्न मान

  1. पायथन में किसी सूची का अंतिम तत्व कैसे प्राप्त करें?

    पायथन अनुक्रम, सूची वस्तु सहित अनुक्रमण की अनुमति देता है। सूची में किसी भी तत्व को शून्य आधारित सूचकांक का उपयोग करके पहुँचा जा सकता है। यदि सूचकांक एक ऋणात्मक संख्या है, तो सूचकांक की गिनती अंत से शुरू होती है। जैसा कि हम सूची में अंतिम तत्व चाहते हैं, -1 को अनुक्रमणिका के रूप में उपयोग करें। >