using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Array_4
{
internal class Program
{
static void Main(string[] args)
{
int[] a = new int[10];
int c = 0;
for (int i = 0; i <= 4; i++)
{
Console.Write(" Elements Enter : ") ;
a[i] = Convert.ToInt32(Console.ReadLine()) ;
}
for (int j = 0 ; j <= 4 ; j++)
{
if ( a[j] < 0 )
{
Console.WriteLine("Print mines (-) numbers : {0} " , a[j] ) ;
c++ ;
}
}
Console.WriteLine(" C = {0} ", c);
}
}
}
- ۹۳/۰۶/۱۷