pls help..

paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1..

create a program that will count all the paper bills in
the number being input..

example:
enter a number: 3886

there is/are:

3 ->1000
1 ->500
3 ->100
1 ->50
1 ->20
1 ->10
1 ->5
1 ->1

example2:
enter a number: 728

there is/are:

0 ->1000
1 ->500
2 ->100
0 ->50
1 ->20
0 ->10
1 ->5
3 ->1

Answer Posted / aruna

The above program works gud. But I have small suggestion.

bill_count[i] = (val>=5?val/bill[i]:val);

This val >=5 will be executed every time though it is not
needed. Simpley we can give Quotient value in bill_count[i].
ie
bill_count[i] = val/bill[i];

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we delete this pointer in c++?

789


Explain one method to process an entire string as one unit?

1087


What are move semantics?

757


What are signs of manipulation?

705


What is DlgProc?

684






Tell me difference between constant pointer and pointer to a constant.

746


What is pointer to member?

680


Write a program in C++ for Fibonacci series

756


What is time h in c++?

689


What do you mean by function pointer?

707


If a header file is included twice by mistake in the program, will it give any error?

647


How can a struct in c++ differs from a struct in c?

702


What is the full form of stl in c++?

783


What is public, protected, private in c++?

766


What is scope resolution operator in c++ with example?

639