General GuidanceThe answer provided below has been developed in a clear step by step manner.Step: 1Ans: Let's implement the given problem in the C++ programming language with comments to understand the code easily.First, declare four integer variables.After that, take the value from the user of the totalPennies variable.Then, calculate the numDimes, numNickels, and numPennies variable as per the conversion rules.In the last, print all these values to the user as per the final results.Explanation:ExplanationUse the above procedure to solve this problem in C++.Step: 2C++ code:#include <iostream>using namespace std;int main(){ //Declare four integer variables... int totalPennies; int numDimes; int numNickels; int numPennies; //Take the value of the totalPennies variable... cin >> totalPennies; //Calculate the numDimes as totalPennies ... See the full answer