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
Explain the difference between using macro and inline functions?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
What is enum c++?
What do you understand by zombie objects in c++?
Is c++ vector a linked list?
What is the difference between #define debug 0 and #undef debug?
what is data encapsulation in C++?
What is c++ prototype?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What is private public protected in c++?
Why is c++ still used?
What are static type checking?
Explain what is class definition in c++ ?
Tell me an example where stacks are useful?
What is a manipulator in c++?