You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
642 B
C#

/*
* C# Program to Calculate the Distance Travelled by Reading Speed and Time
*/
using System;
class program
{
public static void Main()
{
int speed, distance, time;
Console.WriteLine("Enter the Speed(km/hr) : ");
speed = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the Time(hrs) : ");
time = Convert.ToInt32(Console.ReadLine());
distance = speed * time;
Console.WriteLine("Distance Travelled (kms) : " + distance);
Console.ReadLine();
}
}
/*
Enter the Speed(km/hr) : 5
Enter the Time(hrs) : 4
Distance Travelled (kms) : 20