Need help...

Please support our C# advertiser: Intel Parallel Studio Home
Thread Solved

Join Date: Nov 2009
Posts: 11
Reputation: memory100 is an unknown quantity at this point 
Solved Threads: 0
memory100 memory100 is offline Offline
Newbie Poster
 
0
  #11
22 Days Ago
ohh^^^i see forgot about the timesing of the numbers thnxs^^was so upset lol im happy now thnak you.. you knwo how to store a text file in programming?
Reply With Quote Quick reply to this message  
Join Date: Nov 2009
Posts: 11
Reputation: memory100 is an unknown quantity at this point 
Solved Threads: 0
memory100 memory100 is offline Offline
Newbie Poster
 
0
  #12
21 Days Ago
thank you can someoen close this thread or delete it because i have to hand this in... do ot want to penlized for forgery..
Reply With Quote Quick reply to this message  
Join Date: Oct 2008
Posts: 1,955
Reputation: ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of ddanbe has much to be proud of 
Solved Threads: 282
ddanbe's Avatar
ddanbe ddanbe is offline Offline
Posting Virtuoso
 
0
  #13
21 Days Ago
If you want to close the thread, mark it as solved!
Today is a gift, that's why it is called "The Present".
Make love, no war. Cave ab homine unius libri.
Danny
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 359
Reputation: Ryshad has a spectacular aura about Ryshad has a spectacular aura about 
Solved Threads: 66
Ryshad's Avatar
Ryshad Ryshad is offline Offline
Posting Whiz
 
0
  #14
21 Days Ago
Well done, i'm glad to see my advice helped It's so much more rewarding to work through the problem yourself than to have someone give you the code. Just remember this for your future projects; a little effort at the planning stage will save you a lot of effort in the coding stage.

Only one small thing i would recommend; at the end you are showing the subtotal Console.WriteLine(subtotal); , then showing the amount of the VAT Console.WriteLine(totalcharge); but calling it the total. You should display the VAT, then add that to the total to show the total:

  1. vat = subtotal* 0.175;
  2. Console.WriteLine("this is the total vat added at 17.5% ",vat);
  3. Console.WriteLine(vat);
  4.  
  5. totalcharge = subtotal* vat;
  6. Console.WriteLine("this is the total charge with the added vat added",totalcharge);
  7. Console.WriteLine(totalcharge);

I'm afraid you can't remove the thread, you can only mark it as solved. You can try contacting a moderator but as far as i'm aware they dont usually remove code from threads.
Please don't take for granted the work that solvers do for you. Take the time to fully understand the code they give you so that you might adapt it to future problems.

"Learning is more than absorbing facts, it is acquiring understanding.” - William Arthur Ward
Reply With Quote Quick reply to this message  
Reply

Tags
c#

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



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

©2003 - 2009 DaniWeb® LLC