निम्नलिखित हमारी सरणी है -
int[] arr = new int[] { 7, 4, 6, 2 };
मान लें कि दिया गया पूर्णांक दो अन्य पूर्णांकों के योग के बराबर होना चाहिए -
int res = 8;
योग प्राप्त करने और समानता ज्ञात करने के लिए।
for (int i = 0; i < arr.Length; i++) { for (int j = 0; j < arr.Length; j++) { if (i != j) { int sum = arr[i] + arr[j]; if (sum == res) { Console.WriteLine(arr[i]); } } } }
उदाहरण
using System; using System.Collections.Generic; namespace Demo { public class Program { public static void Main(string[] args) { int[] arr = new int[] { 7, 4, 6, 2 }; // given integer int res = 8; Console.WriteLine("Given Integer {0}: ", res); Console.WriteLine("Sum of:"); for (int i = 0; i < arr.Length; i++) { for (int j = 0; j < arr.Length; j++) { if (i != j) { int sum = arr[i] + arr[j]; if (sum == res) { Console.WriteLine(arr[i]); } } } } } } }