Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Надо экспертное мнение по поводу кода C#

Антон Мынов Знаток (480), на голосовании 2 недели назад
Как можно сделать лучше (в смысле укоротить, или просто более красивым сделать, правильным и т.п.) следующий код:
 using System; 

public class Program
{
public static void Main(string[] args)
{
bool firstinputmaybeparsed;
bool secondinputmaybeparsed;
int firstint;
int secondint;
string continu;
int x=0;
int y=0;
Console.WriteLine("Калькулятор двух чисел");
do
{
do
{
Console.WriteLine("Введите первое число...");
string firstinput = Console.ReadLine();
firstinputmaybeparsed = int.TryParse(firstinput, out firstint);
if (firstinputmaybeparsed==false)
{
Console.WriteLine("Неверный ввод");
}
} while (firstinputmaybeparsed == false);

do
{
Console.WriteLine("Введите второе число...");
string secondinput = Console.ReadLine();
secondinputmaybeparsed = int.TryParse(secondinput, out secondint);
if (secondinputmaybeparsed == false)
{
Console.WriteLine("Неверный ввод");
}
} while (secondinputmaybeparsed == false);

bool isoperationvaild = true;
do
{
Console.WriteLine("Введите операцию: +, -, *, /, %");
string operation = Console.ReadLine();
switch (operation)
{
case "+":
Console.WriteLine(firstint + secondint);
isoperationvaild = true;
break;
case "-":
Console.WriteLine(firstint - secondint);
isoperationvaild = true;
break;
case "*":
Console.WriteLine(firstint * secondint);
isoperationvaild = true;
break;
case "/":
Console.WriteLine(firstint / secondint);
isoperationvaild = true;
break;
case "%":
Console.WriteLine(firstint % secondint);
isoperationvaild = true;
break;
default:
Console.WriteLine("Неверный ввод");
isoperationvaild = false;
break;

}
} while (isoperationvaild != true);
do
{
Console.WriteLine("Продолжить?");
continu = Console.ReadLine();
switch (continu)
{
case "No":
break;
case "Yes":
break;
default:
Console.WriteLine("Неверный ввод");
isoperationvaild = false;
break;
}
} while (continu != "Yes" && continu != "No");
} while (continu == "Yes");
}
}
Голосование за лучший ответ
filya Мастер (1490) 1 месяц назад
using System;

public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Калькулятор двух чисел");

do
{
int firstInt = GetValidInteger("Введите первое число...");
int secondInt = GetValidInteger("Введите второе число...");

string operation = GetValidOperation();

PerformOperation(firstInt, secondInt, operation);

} while (GetContinueResponse() == "Yes");
}

private static int GetValidInteger(string prompt)
{
int result;
string input;
do
{
Console.WriteLine(prompt);
input = Console.ReadLine();
} while (!int.TryParse(input, out result));

return result;
}

private static string GetValidOperation()
{
string operation;
do
{
Console.WriteLine("Введите операцию: +, -, *, /, %");
operation = Console.ReadLine();
} while (operation != "+" && operation != "-" && operation != "*" && operation != "/" && operation != "%");

return operation;
}

private static void PerformOperation(int firstInt, int secondInt, string operation)
{
switch (operation)
{
case "+":
Console.WriteLine(firstInt + secondInt);
break;
case "-":
Console.WriteLine(firstInt - secondInt);
break;
case "*":
Console.WriteLine(firstInt * secondInt);
break;
case "/":
if (secondInt == 0)
Console.WriteLine("Деление на ноль невозможно.");
else
Console.WriteLine(firstInt / secondInt);
break;
case "%":
Console.WriteLine(firstInt % secondInt);
break;
}
}

private static string GetContinueResponse()
{
string response;
do
{
Console.WriteLine("Продолжить? (Yes/No)");
response = Console.ReadLine();
} while (response != "Yes" && response != "No");

return response;
}
}
Антон МыновЗнаток (480) 1 месяц назад
код разобрал, вроде всё понятно, спасибо!
Jurijus Zaksas Искусственный Интеллект (467180) 1 месяц назад
Примерно так (это для плавающей точки, переделай под свои целые числа если очень приспичило):

 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);
}
Похожие вопросы