Types - Programming Problems (types)
--------------------------------------------------------------------------------
Write a program that, given the amount of a purchase and the amount received in payment, computes the change in dollars, half-dollars, quarters, dimes, nickles, and pennies.
Please sove in C++
Functions - Create a project that if given the radius of a circle returns the area using the formula PI*r(squared). Create a header file, an implementation file, a documentation file, and a driver program to test the function.
**Note: This must be accomplished in C++ code.
Programming Problem (Selection) - Given: To locate the nearest numbered cross street for a given avenue address, the following algorithm can be used: cancel the last diget of the address, divide by 2, and add or subtract the number given in the following abbreviated table:
1st Ave. add 3
2nd Ave. add 3
3rd Ave. ...
Arrays, vectors, and STL - The Rinky Dooflingy Company manufactures different kinds of doofingies, each identified b a product number. Write a program that reads product number and prices and stores these values in two arrays, number and price;number[0] and price[0] are the product number and unit price for the first item, number[1] and price[1] aare the product number and unit price for the s...
Arrays, Vectors and STL - Write a big-inteter calculator program that allows the user to enter two large integers and the operation to be performed and that calls the appropriate function to carry out the designated operation.
**NOTE: I need the solution in C++ Code.