Advertisement
mmayoub

Ex03, 16.09.2021

Sep 16th, 2021
1,130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Mo3adalaTarbe3ia
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a;
  10.             int b;
  11.             int c;
  12.             Console.WriteLine("enter a,b,c");
  13.             a = int.Parse(Console.ReadLine());
  14.             b = int.Parse(Console.ReadLine());
  15.             c = int.Parse(Console.ReadLine());
  16.  
  17.             if (a == 0)
  18.             {
  19.                 Console.WriteLine("Error, 'A' should not be zero");
  20.             }
  21.             else
  22.             {
  23.                 int delta = b * b - 4 * a * c;
  24.                 if (delta == 0)
  25.                 {
  26.                     Console.WriteLine("Your numbers have 1 Solution ");
  27.                 }
  28.                 else
  29.                 {
  30.                     if (delta > 0)
  31.                     {
  32.                         Console.WriteLine("Your numbers have 2 Solutions ");
  33.                     }
  34.                     else
  35.                     {
  36.                         if (delta < 0)
  37.                         {
  38.                             Console.WriteLine("Your numbers have no Solutions ");
  39.                         }
  40.  
  41.                     }
  42.                 }
  43.             }
  44.         }
  45.     }
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement