This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ConsoleApp3 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Put first number: "); | |
double num1 = Convert.ToDouble(Console.ReadLine()); | |
Console.WriteLine("Put operation: (+, -, / , *): "); |