Create a visual studio console application in C# and using the for and the while loop, please do the following:
Display the odd integers from 1 to 100. Display only five integers per line.
Please include information on name, description of program, date etc as a comment block in your program.
Hint: assuming that the counter variable is i, use the calculation i % 5. When the value of this expression is 0, display a newline character; otherwise, display a tab character. Use the Console.Write ('\t') method to output the tab character. Your output should look like this:
You will have two outputs with the same data, one would be done with the for loop and the other with the while loop.