using System;
public class Program
{
public static void Main()
/*Console.WriteLine("Hello what is your name?");
var name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name);
Console.WriteLine("What team are you on?");
var team = Console.ReadLine();
Console.WriteLine(team + " that's a cool team!");
Console.WriteLine("Why do you want to learn about C#?");
var fav = Console.ReadLine();
Console.WriteLine(fav + " That is a cool part of C#!"); */
/*
Hello what is your name?
Sara
Nice to meet you Sara
What team are you on?
nebraka
nebraka that's a cool team!
Why do you want to learn about C#?
fav
fav That is a cool part of C#!*/
/* //celsius = fahrenheit * 1.8 + 32
//diameter = circumference / 3.14
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine("Hello " + name);
Console.WriteLine("How many TVs do you own?");
int TV = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Wow you own " + TV + " TVs!");
Console.WriteLine("Enter degrees in fahrenheit to be converted to celsius.");
double fahrenheit = Convert.ToDouble(Console.ReadLine());
double celsius = fahrenheit * 1.8 + 32;
Console.WriteLine(fahrenheit + " degrees fahrenheit is "+ celsius + " degrees celsius.");
Console.WriteLine("Enter circumference of a circle to find the diameter.");
double circumference = Convert.ToDouble(Console.ReadLine());
double diameter = circumference / Math.PI;
Console.WriteLine("The the diameter of a circle with a circumference of " + circumference + " is "+diameter);
bool winter = false;
Console.WriteLine("It is " + winter + " that I like Nebraska winters!");*/
day2
What is your name?
Hello Sara
How many TVs do you own?
5
Wow you own 5 TVs!
Enter degrees in fahrenheit to be converted to celsius.
40
40 degrees fahrenheit is 104 degrees celsius.
Enter circumference of a circle to find the diameter.
6.14
The the diameter of a circle with a circumference of 6.14 is 1.95442270116847
It is False that I like Nebraska winters!
http://mainframewizard.com/content/sort-tutorials
*/
Console.WriteLine("Please enter a number");
int number = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Please enter a string");
string text = Console.ReadLine();
}