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
493 B
C#

/*
* C# Program to Calculate Acceleration
using System;
class program
{
static void Main(string[] args)
{
int v, t, acc;
Console.WriteLine("Enter the Velocity : ");
v = int.Parse(Console.ReadLine());
Console.WriteLine("Enter the Time : ");
t = int.Parse(Console.ReadLine());
acc = v / t;
Console.WriteLine("Acceleration : {0}", acc);
}
}
/*
Enter the Velocity :
10
Enter the Time :
2
Acceleration : 5