Get the answers you've been looking for with the help of IDNLearn.com's expert community. Join our knowledgeable community and get detailed, reliable answers to all your questions.
Sagot :
Using the knowledge in computational language in C++ it is possible to write a code that Create the logic for a program that continuously prompts the user for a number of dollars until the user enters 0.
Writting the code:
#include<iostream>
using namespace std;
void displayBills(int dollars)
{
int ones,fives,tens,twenties,temp;
twenties = dollars / 20;
temp = dollars % 20;
tens = temp / 10;
temp = temp % 10;
fives = temp / 5;
ones = temp % 5;
cout<< "\nThe dollar amount of ", dollars, " can be represented by the following monetary denominations\n";
cout<<"twenties: "<<twenties<<"\ntens: "<<tens<<"\nfives: "<<fives<<"\nones: "<<ones;
}
int main()
{
int dollars;
cout<<"Please enter the a whole dollar amount (no cents!). Input 0 to terminate: ";
cin>>dollars;
while(dollars!=0)
{
displayBills(dollars);
cout<<"\nPlease enter the a whole dollar amount (no cents!). Input 0 to terminate: ";
cin>>dollars;
}
return 0;
}
See more about C++ at brainly.com/question/18502436
#SPJ1
Thank you for using this platform to share and learn. Don't hesitate to keep asking and answering. We value every contribution you make. For trustworthy answers, rely on IDNLearn.com. Thanks for visiting, and we look forward to assisting you again.