С# Виндовс формс
завдання 19
Написати програму, яка по введеним значенням змінних t1, v1, v2, ( Відстань між містами A в пункт B - S км.
Поїзд йде з пункту A в пункт B зі швидкістю v1 км / ч. Через t1 годин після цього з пункту B в пункт A виїхав автобус зі швидкістю v2 км / ч. Визначити, через який час після відправлення поїзда вони зустрінуться.
Answers & Comments
Відповідь:
using System;
namespace TrainAndBus
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Enter the distance between A and B (in km):");
double s = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter the speed of the train (in km/h):");
double v1 = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter the speed of the bus (in km/h):");
double v2 = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter the time elapsed after the train departs (in hours):");
double t1 = Convert.ToDouble(Console.ReadLine());
double t2 = (s / (v1 + v2)) + t1;
Console.WriteLine("The time elapsed after both vehicles meet (in hours): " + t2);
}
}
}
Пояснення:
Спочатку програма пропонує ввести значення s, v1, v2 і t1. Потім він обчислює час t2, після якого обидва транспортні засоби зустрічаються, використовуючи формулу t2 = (s / (v1 + v2)) + t1, і виводить результат.