C# calculator program 🖩

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.ค. 2021
  • C# calculator program project tutorial example explained
    #C# #calculator #program
    using System;
    namespace MyFirstProgram
    {
    class Program
    {
    static void Main(string[] args)
    {
    do
    {
    double num1 = 0;
    double num2 = 0;
    double result = 0;
    Console.WriteLine("------------------");
    Console.WriteLine("Calculator Program");
    Console.WriteLine("------------------");
    Console.Write("Enter number 1: ");
    num1 = Convert.ToDouble(Console.ReadLine());
    Console.Write("Enter number 2: ");
    num2 = Convert.ToDouble(Console.ReadLine());
    Console.WriteLine("Enter an option: ");
    Console.WriteLine("\t+ : Add");
    Console.WriteLine("\t- : Subtract");
    Console.WriteLine("\t* : Multiply");
    Console.WriteLine("\t/ : Divide");
    Console.Write("Enter an option: ");
    switch (Console.ReadLine())
    {
    case "+":
    result = num1 + num2;
    Console.WriteLine($"Your result: {num1} + {num2} = " + result);
    break;
    case "-":
    result = num1 - num2;
    Console.WriteLine($"Your result: {num1} - {num2} = " + result);
    break;
    case "*":
    result = num1 * num2;
    Console.WriteLine($"Your result: {num1} * {num2} = " + result);
    break;
    case "/":
    result = num1 / num2;
    Console.WriteLine($"Your result: {num1} / {num2} = " + result);
    break;
    default:
    Console.WriteLine("That was not a valid option");
    break;
    }
    Console.Write("Would you like to continue? (Y = yes, N = No): ");
    } while (Console.ReadLine().ToUpper() == "Y");
    Console.WriteLine("Bye!");
    Console.ReadKey();
    }
    }
    }
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 48

  • @BroCodez
    @BroCodez  3 ปีที่แล้ว +49

    using System;
    namespace MyFirstProgram
    {
    class Program
    {
    static void Main(string[] args)
    {
    do
    {
    double num1 = 0;
    double num2 = 0;
    double result = 0;
    Console.WriteLine("------------------");
    Console.WriteLine("Calculator Program");
    Console.WriteLine("------------------");
    Console.Write("Enter number 1: ");
    num1 = Convert.ToDouble(Console.ReadLine());
    Console.Write("Enter number 2: ");
    num2 = Convert.ToDouble(Console.ReadLine());
    Console.WriteLine("Enter an option: ");
    Console.WriteLine("\t+ : Add");
    Console.WriteLine("\t- : Subtract");
    Console.WriteLine("\t* : Multiply");
    Console.WriteLine("\t/ : Divide");
    Console.Write("Enter an option: ");
    switch (Console.ReadLine())
    {
    case "+":
    result = num1 + num2;
    Console.WriteLine($"Your result: {num1} + {num2} = " + result);
    break;
    case "-":
    result = num1 - num2;
    Console.WriteLine($"Your result: {num1} - {num2} = " + result);
    break;
    case "*":
    result = num1 * num2;
    Console.WriteLine($"Your result: {num1} * {num2} = " + result);
    break;
    case "/":
    result = num1 / num2;
    Console.WriteLine($"Your result: {num1} / {num2} = " + result);
    break;
    default:
    Console.WriteLine("That was not a valid option");
    break;
    }
    Console.Write("Would you like to continue? (Y = yes, N = No): ");
    } while (Console.ReadLine().ToUpper() == "Y");
    Console.WriteLine("Bye!");
    Console.ReadKey();
    }
    }
    }

    • @dreamboy1659
      @dreamboy1659 4 หลายเดือนก่อน

      //Mine - which allow user to do operation with previous result
      //Thank you for the lecture^^!
      internal class Program
      {
      private static void Main(string[] args)
      {
      double a = 0, b = 0, result = 0;
      string operato;
      string cont1, cont2;
      bool true1 = true, true2 = true;
      while(true2==true)
      {
      Console.WriteLine("Enter a: ");
      a = double.Parse(Console.ReadLine());
      true1 = true;
      while (true1 == true)
      {
      Console.WriteLine("Enter b: ");
      b = double.Parse(Console.ReadLine());
      operato = "";
      while(operato != "+" && operato != "-" && operato != "*" && operato != "/")
      {
      Console.WriteLine("What do you want to do now? (+; -; *; /)");
      operato = Console.ReadLine();
      }
      switch (operato)
      {
      case ("+"):
      result = a + b;
      break;
      case ("-"):
      result = a - b;
      break;
      case ("*"):
      result = a * b;
      break;
      case ("/"):
      result = a / b;
      break;
      }
      Console.WriteLine("Result is: " + result);
      cont1 = "";
      while (cont1 != "Y" && cont1 != "N")
      {
      Console.WriteLine("Do you want to continue do calculating with the result? (Y/N)");
      cont1 = Console.ReadLine();
      }
      switch (cont1)
      {
      case ("Y"):
      a = result;
      true1 = true;
      break;
      case ("N"):
      cont2 = "";
      while (cont2 != "Y" && cont2 != "N")
      {
      Console.WriteLine("Then do you want to do another operation or not? (Y/N)");
      cont2 = Console.ReadLine();
      }
      switch (cont2)
      {
      case ("Y"):
      true1 = false;
      true2 = true;
      break;
      case ("N"):
      true1 = false;
      true2 = false;
      break;
      }
      break;
      }
      }
      }
      Console.WriteLine("Ok, bye then!");
      Console.ReadKey();
      }
      }

    • @turkyt
      @turkyt 2 หลายเดือนก่อน

      Give as ne video on this topic please with new method 😔

  • @engirckt5410
    @engirckt5410 3 ปีที่แล้ว +24

    your lessons are better than many c# lessons out there! Thank you for all of the quality lessons you made!

  • @leg1187
    @leg1187 2 ปีที่แล้ว +1

    Thank you mate. Making a calculator In C# is easy but adding support for decimals and negative numbers is a bit tricky you helped me!

  • @ivanpedro9151
    @ivanpedro9151 ปีที่แล้ว +1

    currently learning how to code, thanks for the help

  • @hamzasadouk4741
    @hamzasadouk4741 3 หลายเดือนก่อน +1

    Fantastic video , well explained and easy to follow . the only thing i would like to add for people watching this later would be to make sure that num2 is not 0 to avoid division by 0
    double num2=0;
    .
    .
    .
    . SAME CODE AS THE ONE IN THE VIDEO
    .
    .
    while (num2 == 0)
    {
    Console.WriteLine(" Please enter number 2 diffrent from 0 :");
    num2 = Convert.ToDouble(Console.ReadLine());
    }

  • @AzianPrincess
    @AzianPrincess ปีที่แล้ว

    Thank you so much, Sirr!❤️‍🔥

  • @spartanranger
    @spartanranger 2 ปีที่แล้ว +1

    Thanks for the video Bro.

  •  3 ปีที่แล้ว

    Thanks Bro!

  • @Iamaqwerte
    @Iamaqwerte ปีที่แล้ว +1

    Thanks man! It's a very useful tutorial for beginners like me!

  • @michalski9141
    @michalski9141 2 ปีที่แล้ว

    what if I wanted to make sure the user typed in y or n when asked if they want to continue?

  • @alexmacmillan2690
    @alexmacmillan2690 ปีที่แล้ว +1

    Program is simple, but I’m add check on integer value, because enter params can be string

  • @user-hm4xp6iv9u
    @user-hm4xp6iv9u 2 ปีที่แล้ว +1

    4:57 nice

  • @haroonrasheed1117
    @haroonrasheed1117 ปีที่แล้ว

    thanks

  • @rivazmardani
    @rivazmardani 2 ปีที่แล้ว

    makasih gan

  • @MarbinCastro502
    @MarbinCastro502 8 หลายเดือนก่อน

    NIce

  • @acidpants97
    @acidpants97 11 หลายเดือนก่อน

    I encapsulated the code in a method instead and had it call the method instead of using the do while loop I didn't know anything about that loop or how it worked

  • @user-gk9fn8pu1f
    @user-gk9fn8pu1f 10 หลายเดือนก่อน

    top

  • @AdityaSharma-qt1ig
    @AdityaSharma-qt1ig ปีที่แล้ว

    hey bro first of all thank you soo much for such a helpful content I live in Melbourne and regularly watch your videos
    I need your help in a question I will be soo thank full to you if you can help me
    Create a Visual C Sharp program that asks for the password three times. If the password is correct, it will welcome the user, otherwise, it will say Goodbye and END the program.
    Run the above program and extend it to accept only alphanumeric input - for example, if a user enters digits only or characters only, it should not accept that as input, and ensures input is alphanumeric, and a mix of digits, numbers and one special character.

  • @crazytheorist118
    @crazytheorist118 7 หลายเดือนก่อน

    Chad coding

  • @whitedinamo
    @whitedinamo 2 ปีที่แล้ว +1

    lesson check😇

  • @Taril69
    @Taril69 10 หลายเดือนก่อน +1

    Hey bro,
    How can i lock the "num1" and "num2" to only number/integers. because when add a letter it crashes

    • @Nikola95inYT
      @Nikola95inYT 8 หลายเดือนก่อน +1

      You basically you need to separate taking input and assigning variable.
      After taking input, assign it to a temporary variable and check if it contains only digits, if it is, convert variable to double in order to make operations. You can put it inside loop, so in case of invalid input user will be told to enter again.

    • @Taril69
      @Taril69 8 หลายเดือนก่อน +1

      Alright! thanks for the reply :) @@Nikola95inYT

  • @Vertical_Posts
    @Vertical_Posts 29 วันที่ผ่านมา

    This is not really a calculator because you can just calculate 2 numbers . Making an array would help a lot but would need more cases. Anyways thanks!

  • @iliyan1014
    @iliyan1014 ปีที่แล้ว

    Work for fractions too?

    • @karolissad.4270
      @karolissad.4270 ปีที่แล้ว

      if you mean decimal fractions yes, but it won't understand if you enter something like 1/3

  • @giacomorinaldi
    @giacomorinaldi ปีที่แล้ว

    hello, why you use this code ? $"Your result: {num1} + {num2} = " + result ? it's not creare the $ and the num in the parenthesis

  • @monn1815
    @monn1815 3 ปีที่แล้ว +1

    Why don't you use github for uploading the code?

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +17

      I'm lazy

  • @zhinojabbar847
    @zhinojabbar847 2 ปีที่แล้ว +1

    if number/0 say invaild in swich case ? help

    • @cyrusslobig518
      @cyrusslobig518 2 ปีที่แล้ว

      case '/':
      if (num2 == 0.0)
      Console.WriteLine("Please select an integer other than 0");

    • @zhinojabbar847
      @zhinojabbar847 2 ปีที่แล้ว

      @@cyrusslobig518 thanks

  • @paavobjorkbacka7254
    @paavobjorkbacka7254 2 ปีที่แล้ว +2

    Doesnt work, it les me put numbers like 2 but no 2.2

    • @jawadkassomeh3207
      @jawadkassomeh3207 2 ปีที่แล้ว +1

      try putting in an "," instead of an "."

  • @jorgematos863
    @jorgematos863 2 ปีที่แล้ว

    bro why double numb = 0 and not only double numb;

  • @RighteousBruce
    @RighteousBruce ปีที่แล้ว

    Mine wont even launch

  • @denisdospel2975
    @denisdospel2975 3 วันที่ผ่านมา

    doing this with no experience in IT before, when you typed switch i stopped the video and made the code myself and it ended up like this:
    using System.Reflection;
    using System.Runtime.InteropServices;
    namespace ConsoleApp3
    {
    internal class Program
    {
    static void Main(string[] args)
    {
    double num1 = 0;
    double num2 = 0;
    double result = 0;
    bool again = true;

    while (again)
    {
    String answer = "";
    Console.WriteLine("------------------");
    Console.WriteLine("Calculator Program");
    Console.WriteLine("------------------");
    Console.Write("Enter number 1: ");
    num1 = Convert.ToDouble(Console.ReadLine());
    Console.Write("Enter number 2: ");
    num2 = Convert.ToDouble(Console.ReadLine());
    Console.WriteLine("Select method");
    Console.WriteLine("\t+ : Add");
    Console.WriteLine("\t- : Substract");
    Console.WriteLine("\t* : Multiply");
    Console.WriteLine("\t/ : Divide");
    switch (Console.ReadLine())
    {
    case "+":
    result = num1 + num2;
    Console.WriteLine("Your result: " + num1 + "+" + num2 + "=" + result);
    break;
    case "-":
    result = num1 - num2;
    Console.WriteLine("Your result: " + num1 + "-" + num2 + "=" + result);
    break;
    case "*":
    result = num1 * num2;
    Console.WriteLine("Your result: " + num1 + "*" + num2 + "=" + result);
    break;
    case "/":
    result = num1 / num2;
    Console.WriteLine("Your result: " + num1 + "/" + num2 + "=" + result);
    break;

    }
    Console.WriteLine("Do you want to Start another calculation? Y/N: ");
    answer = Console.ReadLine();
    answer = answer.ToUpper();
    if (answer == "Y")
    {
    again = true;
    }
    else
    {
    again = false;
    }
    }

    Console.WriteLine("GG");
    Console.ReadKey();
    }
    }
    }
    you are truly an amazing teacher. at the end is nice to see that do makes the whole while method way simpler. thank you for the videos!!

  • @jawadkassomeh3207
    @jawadkassomeh3207 2 ปีที่แล้ว

    i think you like 3,14

  • @memy4460
    @memy4460 2 ปีที่แล้ว

    comment

  • @harisshafi01
    @harisshafi01 8 หลายเดือนก่อน

    using System.Runtime.CompilerServices;
    using System.Threading.Channels;
    double firstNum = 0;
    double secondNum = 0;
    double result = 0;
    do
    {
    Console.WriteLine("----------------");
    Console.WriteLine("-- Calculator --");
    Console.WriteLine("----------------");
    Console.Write("Enter the first Num : ");
    firstNum = Convert.ToDouble(Console.ReadLine());
    Console.Write("Enter the second Num : ");
    secondNum = Convert.ToDouble(Console.ReadLine());
    Console.WriteLine("Choose Options");
    Console.WriteLine("\t+ : ADD ");
    Console.WriteLine("\t- : SUBSTRACT ");
    Console.WriteLine("\t* : MULTIPLY");
    Console.WriteLine("\t/ : DIVIDE");
    Console.Write("Enter the Options : ");
    switch(Console.ReadLine())
    {
    case "+":
    result = firstNum + secondNum;
    Console.WriteLine($"Result : {firstNum} + {secondNum} = "+result);
    break;
    case "-":
    result = firstNum - secondNum;
    Console.WriteLine($"Result : {firstNum} - {secondNum} = " + result);
    break;
    case "*":
    result = firstNum * secondNum;
    Console.WriteLine($"Result : {firstNum} * {secondNum} = " + result);
    break;
    case "/":
    result = firstNum / secondNum;
    Console.WriteLine($"Result : {firstNum} / {secondNum} = " + result);
    break;
    default:
    Console.WriteLine("That was not a valid option");
    break;
    }
    Console.WriteLine("Would you like to continue (Y/N) :");
    }while (Console.ReadLine().ToUpper() =="Y");
    Console.WriteLine("Thanks");
    Console.ReadKey();

  • @goroland6904
    @goroland6904 ปีที่แล้ว

    The Code is good:
    Console.Writeline(Source + "Trust me bro");

  • @Go_view
    @Go_view ปีที่แล้ว

    Console.WritLine("greate");