A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write C# program to count total number of negative elements in array
Q:

Write C# program to count total number of negative elements in array

0

Write C# program to count total number of negative elements in array

All Answers

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

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability.

using System;
class Program
{
    static void Main()
    {       
        int[] arr = new int[100];
        int i, num;
 
        //Enter size of array
        Console.WriteLine("Enter size of the array: ");
        num = Convert.ToInt32(Console.ReadLine());
 
        //Reading elements of array
        Console.WriteLine("Enter elements in array: ");        
        for(i=0; i<num; i++)
        {
            arr[i] = Convert.ToInt32(Console.ReadLine());            
        }
 
        Console.WriteLine("All negative elements in array are: ");            
        for(i=0; i<num; i++)
        {
            //Printing negative elements
            if(arr[i] < 0)
            {
                Console.WriteLine(arr[i]);    
            }
        }
        Console.ReadLine();
    }
 
}

Result:

Enter size of the array: 5

Enter elements in array: 

1

2

3

-10

-20

All negative elements in array are: 

-10

-20

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now