Q:

Find negative numbers from array of integers using C# program

belongs to collection: C# Basic Programs | array programs

0

For example we have list of integers:

18, -13, 23, -12, 27

18 is not a negative number because it is not less than zero.
-13 is a negative number because it is less than zero.
23 is not a negative number because it is not less than zero.
-12 is a negative number because it is less than zero.
27 is not a negative number because it is not less than zero.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Consider the example:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
            int i       = 0;
            int[] arr   = new int[5];

            Console.WriteLine("Enter array elements : ");
            for (i = 0; i < arr.Length; i++)
            {
                Console.Write("Element[" + (i + 1) + "]: ");
                arr[i] = int.Parse(Console.ReadLine());
            }

            Console.WriteLine("List of negative numbers : ");
            for (i = 0; i < arr.Length; i++)
            {
                if (arr[i] < 0)
                    Console.Write(arr[i] + " ");
            }
            Console.WriteLine();
        }
    }
}

Output

Enter array elements :
Element[1]: 12
Element[2]: -13
Element[3]: 14
Element[4]: -15
Element[5]: -17
List of negative numbers :
-13  -15  -17

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | array programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Find leap years form array of integers using C# pr... >>
<< Find positive numbers from array of integers using...