Advertisement
alek_

Calculator in C# Template

Feb 21st, 2020
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.84 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.  namespace Calculator
  7.  
  8. { class Program
  9.     {
  10.         static void Main(string[] args)
  11.  
  12.  
  13.  
  14.         {
  15.             {
  16.                 // Intro
  17.  
  18.                 Console.WriteLine("Welcome to Calculator");
  19.                 Console.WriteLine("");
  20.                 Console.WriteLine("Made by *enter_name*");
  21.                 Console.WriteLine("");
  22.  
  23.                 // First Number
  24.  
  25.                 Console.WriteLine("Choose yout first number");
  26.                 Console.WriteLine("");
  27.                 string num1 = Console.ReadLine();
  28.                 int number = Convert.ToInt32(num1);
  29.  
  30.                 // Second Number
  31.  
  32.                 Console.WriteLine("Choose your second number");
  33.                 Console.WriteLine("");
  34.                 string num2 = Console.ReadLine();
  35.                 int number2 = Convert.ToInt32(num2);
  36.  
  37.                 // Operation
  38.  
  39.                 Console.WriteLine("Choose your operation ( + - * / )");
  40.                 string opr = Console.ReadLine();
  41.                 char minus = '-';
  42.                 char plus = '+';
  43.                 char multiply = '*';
  44.                 char division = '/';
  45.  
  46.                 // Background Proccess
  47.  
  48.                 Console.WriteLine("The answer to your equasion is : ");
  49.                 Console.WriteLine("");
  50.  
  51.                 if (opr == Convert.ToString(minus))
  52.                 {
  53.                     Console.WriteLine(number - number2);
  54.                 }
  55.                 else if (opr == Convert.ToString(plus))
  56.                 {
  57.                     Console.WriteLine(number + number2);
  58.                 }
  59.                 else if (opr == Convert.ToString(multiply))
  60.                 {
  61.                     Console.WriteLine(number * number2);
  62.                 }
  63.                 else if (opr == Convert.ToString(division))
  64.                 {
  65.                     Console.WriteLine(number / number2);
  66.                 }
  67.  
  68.                 // Outro
  69.  
  70.                 Console.WriteLine("");
  71.                 Console.WriteLine("");
  72.                 Console.WriteLine("Thank You For Using Calculator \n - *enter_name*");
  73.                 Console.WriteLine("");
  74.                 Console.WriteLine("Write anything below to see if the program ran correctly.");
  75.  
  76.  
  77.                 // Used to make the program run until you close it
  78.  
  79.                 Console.ReadLine();
  80.  
  81.                 // Answer if the program ran correctly
  82.  
  83.                 bool program = true;
  84.  
  85.                 if (program)
  86.  
  87.                     Console.WriteLine("The program is in perfect condition");
  88.  
  89.                 else
  90.  
  91.                     Console.WriteLine("The program malfunctioned try debugging it...");
  92.  
  93.                 Console.ReadLine();
  94.  
  95.             }
  96.  
  97.  
  98.  
  99.  
  100.         }
  101.         }
  102.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement