Script started on Sun 15 Mar 2009 10:44:12 AM EDT [?1034h[10:44] m695340m@cslab100:~/Documents/cs130/calc_project $ make calc_v2 make: *** No rule to make target `calc_v2'. Stop. [10:44] m695340m@cslab100:~/Documents/cs130/calc_project $ make calc_V2 g++ calc_V2.cpp -o calc_V2 [10:44] m695340m@cslab100:~/Documents/cs130/calc_project $ ./calc_V2 + '+' Add (N1 + N2) - '-' Subtract (N1 - N2) * '*' Multiply (N1 * N2) / '/' Divide (N1 / N2) ^ '^' Raise any real N1 to the power of N2 for any integer N2 (+|-) ! '!' Calculate the factorial for any integer N1 (round if real) a 'a' Average of the values in list [] b NO_COMMAND c 'c' Clear (N1, N2) 'cL' Clear the memory list of all values. d 'd#' Delete the value at the index # in List [] e 'e' to enter N1 and N2 f 'fi' File input: prompt for a filename and read values into list [] 'fo' File Output: prompt for a filename and write list values out. g NO_COMMAND h 'h' Help i 'i' to enter a list of values (Q to stop) j NO_COMMAND k NO_COMMAND l 'l' List all the values currently in List () m 'm#' Memorize (save) the last calculation result at index # in list. n NO_COMMAND o 'o' Output the last calculation results to the screen. p 'p' Calculate the product of the values in the list r NO_COMMAND s 's' Sum all the values in List [] 'sd' Calulate the standard deviation in the list [] t NO_COMMAND u NO_COMMAND v NO_COMMAND w NO_COMMAND x NO_COMMAND y NO_COMMAND z NO_COMMAND q Bye, Bye![10:45] m695340m@cslab100:~/Documents/cs130/calc_project $ exit exit Script done on Sun 15 Mar 2009 10:46:00 AM EDT