/* CS201 Programming Project Programmer: Who are you? Description/Vision: What is you ultimate goal or dream Analysis Input: a number. Output: a square. Formulae expressing output in terms of input: square = number * number Algorithm 1. Get input from user 2. Calculate some values from the input data 3. Output the results to the user Versions: Downloaded Dr. Botting's skeleton file. List everything you achieve as you finish it. Mention each new thing you make the program do. Mention each bug you've found or fixed. */ #include using namespace std; int main() { // 1. Get input from user double number; cout << "Number? "; cin >> number; // 2. Calculate some values from the input data double square = number*number; // 3. Output the results to the user cout << square << endl; return 0; // terminate program with zero errors. }