using System;
namespace Easy
{
class Program
static void Main()
float c = -30;
while(c == -30) // по ОДЗ
Console.WriteLine("Введите число: ");
c = Convert.ToSingle(Console.ReadLine());
}
float x;
x = (300 * (30 + c) - 200) / (12 + 25);
Console.WriteLine("x = " + x);
using System;
namespace Easy
{
class Program
{
static void Main()
{
float c = -30;
while(c == -30) // по ОДЗ
{
Console.WriteLine("Введите число: ");
c = Convert.ToSingle(Console.ReadLine());
}
float x;
x = (300 * (30 + c) - 200) / (12 + 25);
Console.WriteLine("x = " + x);
}
}
}