Get clear, concise, and accurate answers to your questions on IDNLearn.com. Discover comprehensive answers to your questions from our community of knowledgeable experts.
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

We greatly appreciate every question and answer you provide. Keep engaging and finding the best solutions. This community is the perfect place to learn and grow together. Thank you for choosing IDNLearn.com. We’re committed to providing accurate answers, so visit us again soon.