Advertisement
Spocoman

05. Multiplication Sign

Jan 30th, 2022 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.91 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MultiplicationSign
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double n1 = double.Parse(Console.ReadLine());
  10.             double n2 = double.Parse(Console.ReadLine());
  11.             double n3 = double.Parse(Console.ReadLine());
  12.  
  13.             Console.WriteLine(ProductValue(n1, n2, n3));
  14.         }
  15.  
  16.         static string ProductValue(double n1, double n2, double n3)
  17.         {
  18.             string result = "positive";
  19.  
  20.             if (n1 == 0 || n2 == 0 || n3 == 0)
  21.             {
  22.                 result = "zero";
  23.             }
  24.             else if (n1 < 0 || n2 < 0 || n3 < 0)
  25.             {
  26.                 if (!(n1 < 0 && n2 < 0 && n3 > 0 || n1 < 0 && n3 < 0 && n2 > 0 || n2 < 0 && n3 < 0 && n1 > 0))
  27.                 {
  28.                     result = "negative";
  29.                 }
  30.             }
  31.  
  32.             return result;
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement