static void Main(string[] args) { Console.WriteLine("Программа для вычисления ИМТ (индекса массы тела) человека."); double weight = Convert.ToDouble(WriterReader.WriteRead("Введите массу тела в килограммах").Replace('.', ',')); double height = Convert.ToDouble(WriterReader.WriteRead("Введите рост в метрах").Replace('.', ',')); WriterReader.Pause($"Индекса вашей массы тела равен: {weight / (height * height):F}"); }
static void Main(string[] args) { Console.WriteLine("Программа для изменнеия значений переменных местами"); double a = Convert.ToDouble(WriterReader.WriteRead("Введите a").Replace('.', ',')); double b = Convert.ToDouble(WriterReader.WriteRead("Введите b").Replace('.', ',')); a += b; b = a - b; a -= b; WriterReader.Pause($"a = {a}, b = {b}"); }
static void Main(string[] args) { double x1, x2, y1, y2; Console.WriteLine("Программа для расчета расстояния между точками Х1:Х2 Y1:Y2"); x1 = Convert.ToDouble(WriterReader.WriteRead("Введите X1")); x2 = Convert.ToDouble(WriterReader.WriteRead("Введите X2")); y1 = Convert.ToDouble(WriterReader.WriteRead("Введите Y1")); y2 = Convert.ToDouble(WriterReader.WriteRead("Введите Y2")); WriterReader.Pause($"Расстояние мужду точками равно: {Distance(x1, x2, y1, y2)}"); }
static void Main(string[] args) { string name, surname, city; name = WriterReader.WriteRead("Введите Ваше имя:"); surname = WriterReader.WriteRead("Введите Вашу фамилию:"); city = WriterReader.WriteRead("Введите Ваш город:"); WriterReader.Print($"{name} {surname}, {city}", (Console.WindowWidth - (3 + name.Length + surname.Length + city.Length)) / 2, Console.WindowHeight / 2); Console.ReadKey(); }
static void Main(string[] args) { string name, surname, age, height, weight; name = WriterReader.WriteRead("Введите Ваше имя:"); surname = WriterReader.WriteRead("Введите Вашу фамилию:"); age = WriterReader.WriteRead("Введите Ваш возраст:"); height = WriterReader.WriteRead("Введите Ваш рост:"); weight = WriterReader.WriteRead("Введите Ваш вес:"); Console.WriteLine(); Console.WriteLine("Метод склеивания:"); Console.WriteLine("Имя: " + name + " Фамилия: " + surname + " Возраст: " + age + " Рост: " + height + " Вес: " + weight); Console.WriteLine("Форматированный вывод:"); Console.WriteLine("Имя: {0} Фамилия: {1} Возраст: {2} Рост: {3} Вес: {4}", name, surname, age, height, weight); Console.WriteLine("Метод интерполяции:"); Console.WriteLine($"Имя: {name} Фамилия: {surname} Возраст: {age} Рост: {height} Вес: {weight}"); Console.ReadKey(); }