TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Szymon Wasyl
NA
3
584
Application help
Oct 16 2015 9:40 AM
namespace ICTAthlete
{
class Program
{
static void Main(string[] args)
{
Console.BackgroundColor = ConsoleColor.White;
Console.ForegroundColor = ConsoleColor.DarkGreen;
Console.WriteLine("Welcome to my Program");
Console.ResetColor();
string sportowiec;
Console.WriteLine("Please write your athlete's name");
sportowiec = Console.ReadLine();
Console.WriteLine("How long did it take for that athlete to finish the race?");
}
}
}
This is my console application for determining the speed of an athlete. CAn anyone help me with the next step to convert the speed into mph and do distance/time?
Reply
Answers (
3
)
default printing
How to move listbox items to a listbox in another form?