Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Practice
- {
- class Program
- {
- static void Main()
- {
- int Number1 = 8;
- int Number2 = 2;
- string Desire;
- Console.WriteLine("Welcome to math with charybdizs! Our special guests today are 8 and 2!");
- Console.WriteLine("What would you like them to do today? Addition, Subtraction, Multiplication, or Division?");
- Desire = Console.ReadLine();
- if (Desire == "Addition")
- {
- Console.WriteLine(Number1 + Number2);
- }
- else if (Desire == "Subtraction")
- {
- Console.WriteLine(Number1 - Number2);
- }
- else if (Desire == "Multiplication")
- {
- Console.WriteLine(Number1 * Number2);
- }
- else if (Desire == "Division")
- {
- Console.WriteLine(Number1 / Number2);
- }
- else
- {
- Console.WriteLine("I don't understand you. gg wp it's been fun. Fuck this.");
- }
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement