Advertisement
marto9119

Untitled

May 10th, 2023
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace _05._Multiplication_Sign
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int[] nums = new int[3];
  10.  
  11.             FillArry(nums);
  12.             PrintResult(nums);
  13.         }
  14.  
  15.         static void PrintResult(int[] nums)
  16.         {
  17.             if (nums.Any(x => x == 0))
  18.             {
  19.                 Console.WriteLine("zero");
  20.                 return;
  21.             }
  22.             if (nums.Count(x => x < 0) % 2 == 1)
  23.             {
  24.                 Console.WriteLine("negative");
  25.             }
  26.             else { Console.WriteLine("positive"); }
  27.         }
  28.  
  29.         static void FillArry(int[] nums)
  30.         {
  31.             for (int i = 0; i < nums.Length; i++)
  32.             {
  33.                 nums[i] = int.Parse(Console.ReadLine());
  34.             }
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement