Find the best answers to your questions at Westonci.ca, where experts and enthusiasts provide accurate, reliable information. Explore our Q&A platform to find in-depth answers from a wide range of experts in different fields. Join our platform to connect with experts ready to provide precise answers to your questions in different areas.
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
Thanks for using our platform. We're always here to provide accurate and up-to-date answers to all your queries. We hope you found what you were looking for. Feel free to revisit us for more answers and updated information. Westonci.ca is committed to providing accurate answers. Come back soon for more trustworthy information.