The code for you to use
using System;// This pulls up the System Dictionary for me to use. I like dictionaries
// This is the name of the program
namespace Comments
{
//This is the name of the program
class Program
{
// this is the name of the main function
static void Main(string[] args)
{
// this writes out to the screen in Colsole "hello World" I love this line
Console.WriteLine("Hello World!");
{
int v = 10800; // 3*60*60
int zzz = 3 * 60;// This is a variable to hold the value of 3 minutes in seconds
int zzz = 5 * 60;// This is a variable to hold the value of 6 minutes in seconds
float siii = 3.141526f; //This is the value of pi
// Console.Writeline (results);
// here we should print the v value but a programmer didn't have time to write any code
// but he/she likes writing long comments
}
}
}
}
The Assignment
1 Go in and clean up the lines of code that is included above. Remove any areas of worthless comments and keep the comments that are important.
2. Change the name of the int in the code to have it make more sense.... (watch the video)