Computer Science homework help. 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):
- 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.
- Output a message: “You entered the following {the number of days} days:”
- Output the five days of the week in the order entered.
- 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):
- Output a header in the console: “This is Program02”
- Ask the user to enter three floats and read the values into variables.
- Perform addition, multiplication, and division examples with the numbers.
- Implicitly cast the floats into doubles.
- Explicitly cast the floats into ints.
- Use conversion methods to convert the floats into strings.
- Ask the user to enter one of four string choices and demonstrate a switch
statement based on the string entered by the user.
- 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
- 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