Advertisement
marto9119

Untitled

May 10th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 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.             }
  21.             else if (nums.Any(x => x < 0))
  22.             {
  23.                 Console.WriteLine("negative");
  24.             }
  25.             else { Console.WriteLine("positive"); }
  26.         }
  27.  
  28.         static void FillArry(int[] nums)
  29.         {
  30.             for (int i = 0; i < nums.Length; i++)
  31.             {
  32.                 nums[i] = int.Parse(Console.ReadLine());
  33.             }
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement