IDNLearn.com is your go-to resource for finding precise and accurate answers. Our platform provides detailed and accurate responses from experts, helping you navigate any topic with confidence.
Sagot :
Using the knowledge in computational language in C++ it is possible to write a code that determine what change a cashier should return to a customer.
Writting the code:
#include <iostream>
using namespace std;
int main() {
// your code goes here
cout << "Enter the item cost : ";
double cost;
cin >> cost;
cout << "\nEnter what customer paid : ";
double paid;
cin >> paid;
double ret;
ret = paid - cost;
cout << "\nThe total number of cents to be returned is : " << ret;
cout << "\nChange given should be";
int ten,five,one;
ten = ret/10;
ret = ret - (10*ten);
five = ret/5;
ret = ret - (5*five);
one = ret/1;
cout << "\nNumber of 10 dollar bills : " << ten;
cout << "\nNumber of 5 dollar bills : " << five;
cout << "\nNumber of 1 dollar bills : " << one;
return 0;
}
See more about C++ at brainly.com/question/12975450
#SPJ1

Your participation means a lot to us. Keep sharing information and solutions. This community grows thanks to the amazing contributions from members like you. For trustworthy answers, rely on IDNLearn.com. Thanks for visiting, and we look forward to assisting you again.