Create a console application using Visual Studio (1).
Name the source file Program01.cs.
Add your Program01.cs and Program01.exe files to a folder Program01.
Compress the Program01 folder and upload to Bb at the appropriate
assignment submission link.
Requirements (remember to identify the requirements by number):
1. Output a header in the console: This is Program01
The program should accept the names of five days of the week as
command line arguments.
2. Output a message: You entered the following {the number of days} days:
3. Output the five days of the week in the order entered.
4. Output a thank you message: Thank you for running Program01.
Not meeting all requirements = No 0 points for the assignment.
Flowchart
Include a flowchart of your program.
Construct your flowchart using draw.io. Use appropriate symbols. Use vertical/horizontal connections (NOT slanted/angled connections).
Export your flowchart to the SVG format (File | Export as… | SVG)
Submit the SVG file with your assignment
Create a console application using Visual Studio (2).
Name the Solution and Project Program02.
Output appropriate communication messages to the user.
Output appropriate results.
Requirements (remember to identify the requirements by number):
1. Output a header in the console: This is Program02
2. Ask the user to enter three floats and read the values into variables.
3. Perform addition, multiplication, and division examples with the numbers.
4. Implicitly cast the floats into doubles.
5. Explicitly cast the floats into ints.
6. Use conversion methods to convert the floats into strings.
7. Ask the user to enter one of four string choices and demonstrate a switch
statement based on the string entered by the user.
8. Use decision constructs to sort the items into ascending order.
Use existing floats from #2.
Must accommodate any entry order and sort correctly.
Do not use the Sort() method
9. Output a thank you message: Thank you for running Program02.
Flowchart
Include a flowchart of your program.
Construct your flowchart using draw.io. Use appropriate symbols. Use vertical/horizontal connections (NOT slanted/angled connections).
Export your flowchart to the SVG format (File | Export as… | SVG)
Submit the SVG file with your assignment
