Advertisement
marto9119

Untitled

Jan 13th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.33 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp // Note: actual namespace depends on the project name.
  4. {
  5.     internal 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.             string sinvol =Console.ReadLine();
  12.             double result = 0;
  13.  
  14.             if (sinvol == "+")
  15.             {
  16.                 result = n1 + n2;
  17.                 if (result % 2 == 0)
  18.                 {
  19.                     Console.WriteLine($"{n1} + {n2} = {result} - even");
  20.                 }
  21.                 else if (result % 2 != 0)
  22.                 {
  23.                     Console.WriteLine($"{n1} + {n2} = {result} - odd");
  24.                 }
  25.             }
  26.             else if (sinvol == "-")
  27.             {
  28.                 result = n1 - n2;
  29.                 if (result % 2 == 0)
  30.                 {
  31.                     Console.WriteLine($"{n1} - {n2} = {result} - even");
  32.                 }
  33.                 else if (result % 2 != 0)
  34.                 {
  35.                     Console.WriteLine($"{n1} - {n2} = {result} - odd");
  36.                 }
  37.             }
  38.             else if (sinvol == "*")
  39.             {
  40.                 result = n1 * n2;
  41.                 if (result % 2 == 0)
  42.                 {
  43.                     Console.WriteLine($"{n1} * {n2} = {result} - even");
  44.                 }
  45.                 else if (result % 2 != 0)
  46.                 {
  47.                     Console.WriteLine($"{n1} * {n2} = {result} - odd");
  48.                 }
  49.             }
  50.             else if (sinvol == "/")
  51.             {
  52.                 if (n2 == 0)
  53.                 {
  54.                     Console.WriteLine($"Cannot divide {n1} by zero");
  55.                 }
  56.                 else if (n2 != 0)
  57.                 {
  58.                     result= n1 / n2 ;
  59.                     Console.WriteLine($"{n1} / {n2} = {result:f2}");
  60.                 }
  61.             }
  62.             else if (sinvol == "%")
  63.             {
  64.                 if (n2 == 0)
  65.                 {
  66.                     Console.WriteLine($"Cannot divide {n1} by zero");
  67.                 }
  68.                 else if (n2 != 0)
  69.                 {
  70.                     result = n1 % n2;
  71.                     Console.WriteLine($"{n1} % {n2} = {result}");
  72.                 }
  73.             }
  74.         }
  75.     }
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement