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

जांचें कि क्या किसी सरणी में ऐसे तत्व हैं जो सी # में निर्दिष्ट शर्तों से मेल खाते हैं


यह जांचने के लिए कि क्या किसी सरणी में वे तत्व हैं जो विशिष्ट परिस्थितियों से मेल खाते हैं, हम C# में StartsWith() विधि का उपयोग कर सकते हैं -

उदाहरण

using System;
public class Demo {
   public static void Main(){
      string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "Furniture" };
      Console.WriteLine("Products list...");
      foreach(string s in products){
         Console.WriteLine(s);
      }
      Console.WriteLine("\nOne or more products begin with the letter 'C'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("C")));
      Console.WriteLine("One or more planets begin with 'D'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("D")));
      Console.WriteLine("One or more products begin with the letter 'T'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("T")));
      Console.WriteLine("One or more planets begin with 'E'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("E")));
   }
}

आउटपुट

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

Products list...
Electronics
Accessories
Clothing
Toys
Clothing
Furniture
One or more products begin with the letter 'C'? = True
One or more planets begin with 'D'? = False
One or more products begin with the letter 'T'? = True
One or more planets begin with 'E'? = True

उदाहरण

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

using System;
public class Demo {
   public static void Main(){
      string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "Furniture" };
      Console.WriteLine("Products list...");
      foreach(string s in products){
         Console.WriteLine(s);
      }
      Console.WriteLine("Is the products Accessories in the array? = {0}",
      Array.Exists(products, ele => ele == "Accessories"));
      Console.WriteLine("Is the products Stationery in the array? = {0}",
      Array.Exists(products, ele => ele == "Stationery"));
      Console.WriteLine("\nOne or more products begin with the letter 'C'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("C")));
      Console.WriteLine("One or more planets begin with 'D'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("D")));
      Console.WriteLine("One or more products begin with the letter 'T'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("T")));
      Console.WriteLine("One or more planets begin with 'E'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("E")));
   }
}

आउटपुट

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

Products list...
Electronics
Accessories
Clothing
Toys
Clothing
Furniture
Is the products Accessories in the array? = True
Is the products Stationery in the array? = False
One or more products begin with the letter 'C'? = True
One or more planets begin with 'D'? = False
One or more products begin with the letter 'T'? = True
One or more planets begin with 'E'? = True

  1. सी # में जंजीर सरणी के तत्वों का प्रकार क्या है?

    एक जंजीर सरणी सरणियों की एक सरणी है, और इसलिए इसके तत्व संदर्भ प्रकार हैं और शून्य के लिए आरंभिक हैं। आइए देखें कि दांतेदार सरणी के साथ कैसे काम करें - एक दांतेदार सरणी घोषित करें - int [][] marks; अब, आइए इसे इनिशियलाइज़ करें, जिसमें निशान 5 पूर्णांकों की एक सरणी है - int[][] marks = new int[][]

  1. जावा प्रोग्राम यह जाँचने के लिए कि क्या एक ऐरे में दिया गया मान है

    इस लेख में, हम समझेंगे कि कैसे जांचा जाए कि किसी सरणी में दिया गया मान है या नहीं। यह सरणी तत्वों पर पुनरावृति करके और सरणी तत्वों के साथ दिए गए इनपुट की तुलना करके पूरा किया जाता है। नीचे उसी का एक प्रदर्शन है - इनपुट मान लीजिए हमारा इनपुट है - खोज की जाने वाली संख्या दर्ज करें:25पूर्णांक सरणी

  1. जांचें कि क्या किसी सरणी में पायथन में दी गई श्रेणी के सभी तत्व हैं

    मान लीजिए कि हमारे पास nums नामक एक सरणी है। हमारे पास एक श्रेणी [x, y] को परिभाषित करने वाली दो संख्याएँ x और y भी हैं। हमें यह जांचना है कि सरणी में दी गई श्रेणी में सभी तत्व हैं या नहीं। इसलिए, यदि इनपुट अंकों की तरह है =[5,8,9,6,3,2,4] x =2 y =6, तो आउटपुट सही होगा क्योंकि सभी तत्व हैं [2,3,4,5