d.s. malik

Please support our C++ advertiser: Intel Parallel Studio Home
Reply

Join Date: Oct 2009
Posts: 21
Reputation: IT seeker is an unknown quantity at this point 
Solved Threads: 0
IT seeker IT seeker is offline Offline
Newbie Poster

d.s. malik

 
-5
  #1
18 Days Ago
salam, hope u people ll fine , any body have solved excercises of CHAP 2, CHAP 3,CHAP4 AND CHAP 5 BY D.S AMLIK book i need these urgent so kindly help me my exams r very near n i w ant to prepare them
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 15,343
Reputation: Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute 
Solved Threads: 1460
Team Colleague
Featured Poster
Ancient Dragon's Avatar
Ancient Dragon Ancient Dragon is offline Offline
Still Learning
 
-6
  #2
17 Days Ago
Why don't you solve them yourself? You won't learn anything by cheating.
Don't PM me with questions -- you might get a nasty PM in response. If you have a question then post it in one of the forums.
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 21
Reputation: IT seeker is an unknown quantity at this point 
Solved Threads: 0
IT seeker IT seeker is offline Offline
Newbie Poster
 
0
  #3
17 Days Ago
yeah i dont want to learn anything by cheating but i m nothing in progrmmaing i can make simple progrmas and in my book there r difficult question would u plz teach me i want to learn therefore i ve joined this forum, so tell me when u ll start to learn me ???????? i m wating
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 283
Reputation: Clinton Portis is an unknown quantity at this point 
Solved Threads: 28
Clinton Portis's Avatar
Clinton Portis Clinton Portis is online now Online
Posting Whiz in Training
 
0
  #4
17 Days Ago
What part of programming is specifically giving you difficulty? (please provide code with well-written question)
Last edited by Clinton Portis; 17 Days Ago at 2:05 pm.
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 21
Reputation: IT seeker is an unknown quantity at this point 
Solved Threads: 0
IT seeker IT seeker is offline Offline
Newbie Poster
 
0
  #5
17 Days Ago
progrmming statments r difficult for me i dont know what i ve done in this progrme there r many but here it is

a cashier has currency notes of denomination 10,50,100. if the amount to be withdrawn is input through the keyboard in hunderds, find the total number of currency notes of each denomination the cashier will have to give the withdrawer??

n what do u mean by provide code??
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,596
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 711
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess
 
1
  #6
17 Days Ago
>so tell me when u ll start to learn me ???????? i m wating
I'll learn you good. Start by not being so impatient. Everyone has to start from nothing and work their way up to something. Being given solutions doesn't help you learn nearly as much as working your way through to your own solution.

>n what do u mean by provide code??
He means try it first on your own before begging for help. I can guarantee that when (or if) you get into the real world as a programmer and try that BS, you'll be told to do your damn job and stop whining.
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 21
Reputation: IT seeker is an unknown quantity at this point 
Solved Threads: 0
IT seeker IT seeker is offline Offline
Newbie Poster
 
0
  #7
17 Days Ago
ok i understand . first i ll try thank u
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 21
Reputation: IT seeker is an unknown quantity at this point 
Solved Threads: 0
IT seeker IT seeker is offline Offline
Newbie Poster
 
0
  #8
17 Days Ago
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int note10,note50,note100;
  6. cout<<"enter the withdrawn ammount"
  7. cin>>amount;
(what is next step ?
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 283
Reputation: Clinton Portis is an unknown quantity at this point 
Solved Threads: 28
Clinton Portis's Avatar
Clinton Portis Clinton Portis is online now Online
Posting Whiz in Training
 
0
  #9
17 Days Ago
Here is the pseudo code for what ye' wish to accomplish:

1. Accept user input in the proper format. In this case, since we are dealing with money, I would suggest a 'double' data type or something comparable that will handle decimal values. (if you want to deal with only whole dollar amounts, be sure to let the user know)

2. Now that you have the user input, try using simple division to determine what denominations of money is to be 'returned' to the user. I would start testing with the largest denomination possible... then when that no longer works, then you can start trying lower denominations (based on real-life cashiering logic).
  1. //This is your lowest denomination, so when we get to this point, we know we don't need to continue to calculate change with this loop.
  2. while(change < 10)
  3. {
  4. //Test for your largest denomination first
  5. if(amount / 100)
  6. {
  7. //adjust user inputed amount to withdraw
  8. amount -= 100;
  9. //keep a running counter of how many $100 bills ye' have issued thus far
  10. hundreds++;
  11. }
  12. else if(amount / 50)
  13. {
  14. amount -= 50;
  15. fifties++
  16. }
  17. ...
  18. ...
  19. ...
  20. etc etc.
  21.  
  22. cout << "You get " << hundreds << " x $100" <<endl;
  23. cout << "You get " << fifties << " x $50"<<endl;
  24. cout << "You get " << tens << " x $10" <<endl;
  25. cout << "Remaining money: $" << amount;

This should get ye' pointed in some sort of direction.

This is untested/uncompiled code and may contain simple easy to fix errors.
Last edited by Clinton Portis; 17 Days Ago at 4:42 pm.
Reply With Quote Quick reply to this message  
Join Date: May 2006
Posts: 1,813
Reputation: ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all ithelp is a name known to all 
Solved Threads: 117
ithelp's Avatar
ithelp ithelp is offline Offline
Posting Virtuoso
 
0
  #10
16 Days Ago
Originally Posted by IT seeker View Post
salam, hope u people ll fine , any body have solved excercises of CHAP 2, CHAP 3,CHAP4 AND CHAP 5 BY D.S AMLIK book i need these urgent so kindly help me my exams r very near n i w ant to prepare them
I guess all the solutions of the exercises of CHAP2 .. CHAP 5 are there at the appendix section of the book, if you do not find it there , just write a letter to the author of the book, he will oblige by sending you the answers via mail.
Reply With Quote Quick reply to this message  
Reply

Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC