Reference no: EM132355524
Question
Suppose you want to develop a program that classifies a given amount of money into smaller monetary units. The program lets the user enter an amount as a floating-point value representing a total dollars and cents, and then outputs a report listing the monetary equivalent in dollars, quarters, dimes, nickels, and pennies.
Your program should report the maximum number of dollars, then the number of quarters, dimes, nickels, and pennies, in this order, to result in the minimum number of coins.
Sample Run
Enter an amount, for example, 11.56: 11.56
Your amount 11.56 consists of:
11 dollars
2 quarters
0 dimes
1 nickels
1 pennies
Given two points, the formula for computing the distance is program that prompts the user to enter two points and computes the distance between them. Note that each point is characterized by two float values, representing the x-axis and y-axis.
Sample Run
Enter x1 and y1 for Point 1: 1.5, -3.4
Enter x2 and y2 for Point 2: 4, 5
The distance between (1.5, -3.4) and (4, 5) is 8.8