C# program to determine if any two integers in array sum to given integer

The following is our array −

int[] arr = new int[] {
   7,
   4,
   6,
   2
};

Let’s say the given intger that should be equal to sum of two other integers is −

int res = 8;

To get the sum and find the equality.

for (int i = 0; i 

Example

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 
Updated on: 2020-06-22T09:21:51+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements