Advertisement
amjadArabia

29/11/19/ C#

Nov 29th, 2019
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.65 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             // Random rnd = new Random();
  15.  
  16.             // int a = rnd.Next(2, 13);
  17.             // int b = rnd.Next(2, 13);
  18.             // int c = rnd.Next(2, 13);
  19.             // int d = rnd.Next(2, 13);
  20.             // int e = rnd.Next(2, 13);
  21.             // int f = rnd.Next(2, 13);
  22.  
  23.  
  24.  
  25.  
  26.             //int dev = (a * e - b * d);
  27.  
  28.  
  29.             // if(dev == 0)
  30.             // {
  31.             //     Console.WriteLine("uncorrect answer");
  32.             // }
  33.             // else
  34.             // {
  35.             //     int x = (c * e - b * f);
  36.             //     int y = (a * f - c * d);
  37.             //     Console.WriteLine("(" + x + ", " + y + ")");
  38.             // }
  39.  
  40.             /****************************************************************************************/
  41.             //Random rnd = new Random();
  42.  
  43.             //int mtrNum = rnd.Next(1, 11);
  44.  
  45.             //if(mtrNum == 1)
  46.             //{
  47.             //    Console.WriteLine("one");
  48.             //}
  49.             //else if (mtrNum == 2)
  50.             //{
  51.             //    Console.WriteLine("Two");
  52.             //}
  53.             //else if(mtrNum == 3){
  54.             //    Console.WriteLine("Three");
  55.             //}
  56.             //else if (mtrNum == 4)
  57.             //    {
  58.             //    Console.WriteLine("four");
  59.             //     }
  60.  
  61.             //else if (mtrNum == 5)
  62.             //{
  63.             //    Console.WriteLine("five");
  64.             //}
  65.             //else if (mtrNum == 6)
  66.             //{
  67.             //    Console.WriteLine("six");
  68.             //}
  69.             //else
  70.             //        {
  71.             //    Console.WriteLine("un correct number");
  72.             //}
  73.             /********************************************************************************/
  74.             //Console.WriteLine("enter the name if the anumal deer / turtle");
  75.  
  76.             //String animalName = Console.ReadLine();
  77.  
  78.             //Console.WriteLine("the animal is :" + animalName);
  79.  
  80.             //Console.WriteLine("enter the running time for" + animalName);
  81.  
  82.             //int runSpd = int.Parse(Console.ReadLine());
  83.  
  84.             //if(animalName == "deer")
  85.             //{
  86.  
  87.             //}
  88.  
  89.  
  90.  
  91.  
  92.             /*******************************************************************************/
  93.             int a, b, c;
  94.             int root;
  95.            
  96.             Console.WriteLine("enter the value of a");
  97.             a = int.Parse(Console.ReadLine());
  98.  
  99.             Console.WriteLine("enter the value of b");
  100.             b = int.Parse(Console.ReadLine());
  101.  
  102.             Console.WriteLine("enter the value of c");
  103.             c = int.Parse(Console.ReadLine());
  104.  
  105.             double delta = Math.Pow(b, 2) - 4 * a * c;
  106.             Console.WriteLine("{0}X^2 + {1}X + {2}",a,b,c);
  107.  
  108.            if (delta< 0)
  109.                 Console.WriteLine("no solution");
  110.            
  111.            else if (delta ==0)
  112.             {
  113.                 double solution = (double)(-b) / (2 * 1);
  114.                 Console.WriteLine("One Solution");
  115.                 Console.WriteLine("The solution is:" + solution);
  116.             }
  117.             else
  118.             {
  119.                 double x1 = (double)((-b) + Math.Sqrt(delta)) / (2 * a);
  120.                 double x2 = (double)((-b) - Math.Sqrt(delta)) / (2 * a);
  121.  
  122.                 Console.WriteLine("Two solution");
  123.                 Console.WriteLine("The solution is: x1:{0} , x2:{1}" ,x1 ,x2);
  124.             }
  125.  
  126.                
  127.         }
  128.     }
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement