Примерно так (это для плавающей точки, переделай под свои целые числа если очень приспичило):
static double GetDouble(string _Prompt)
{
int t = 0;
double Result;
do
{
if (t++ > 0)
Console.WriteLine("Error parsing input");
Console.Write(_Prompt);
}
while (!double.TryParse(Console.ReadLine(), out Result));
return Result;
}
static char GetChar(string _Prompt, string _Filter)
{
int t = 0;
char Result;
do
{
if (t++ > 0)
Console.WriteLine("Invalid input, please enter one of the following: " + _Filter);
Console.Write(_Prompt);
Result = Console.ReadKey().KeyChar;
Console.WriteLine();
}
while (!_Filter.Contains(Result));
return Result;
}
private delegate double MathOperation(double x, double y);
private static double Add(double x, double y) => x + y;
private static double Subtract(double x, double y) => x - y;
private static double Multiply(double x, double y) => x * y;
private static double Divide(double x, double y) => x / y;
private static MathOperation CharToOp(char c)
{
switch(c)
{
case '-': return Subtract;
case '+': return Add;
case '*': return Multiply;
case '/': return Divide;
}
return null;
}
static void Main(string[] args)
{
Console.WriteLine("A primitive calculator, press Cntrl-C to exit anytime");
do
{
double x = GetDouble("Enter first number: ");
double y = GetDouble("Enter second number: ");
char OpChar = GetChar("Enter operation symbol: ", "/*-+");
MathOperation op = CharToOp(OpChar);
Console.WriteLine($"{x}{OpChar}{y}={op(x, y)}");
}
while (true);
}