Project 1: Yondu Udonta
Questions and Answers
What is a .csv file?
A .csv file is a text file where the data on a single line is separated by commas rather than spaces or tabs. There’s nothing else special about creating one.
The example output has comments in it. Does my output file need comments like that too?
Yes, even though it’s a .csv file, you need to put the comments in there too.
This project does not ask for user input for anything. So what are the program inputs?
What are numbers that if you change them, would change the problem? Those are the problem/program inputs from a design perspective. Values can be inputs even if they are not asked for from the console, a file or the command line. Hard-coded numbers or (better) numbers that are stored in variables can still be program/problem inputs.