Forum: C++ May 12th, 2004 |
| Replies: 2 Views: 2,664 read in the toll file, read in the customer file. store the customer's data into a structure. if the customers balance is > 0 then print out the data. what is it that u dont know how to do? we... |
Forum: C++ Apr 29th, 2004 |
| Replies: 16 Views: 11,017 i never made fun of you, i simply suggested doing a little searching. you come on and basically post your homework assignment and think that people are going to just hand u code, LMAO. and uhh,... |
Forum: C++ Apr 28th, 2004 |
| Replies: 5 Views: 10,004 it is faster to type but there's no difference in the code generated, test it and see for yourself. |
Forum: C++ Apr 28th, 2004 |
| Replies: 16 Views: 11,017 what do u think we're gonna write it for u? im not going to google, it isnt my assignment. u need to LOOK harder. everyone gets this assignment in their OS class, i'm sure a solution is out there. ... |
Forum: C++ Apr 27th, 2004 |
| Replies: 16 Views: 11,017 |
Forum: C++ Apr 22nd, 2004 |
| Replies: 5 Views: 3,641 your add_item method should traverse to the END of the list, and add the element there. the remove_item method should remove the first element in the list. |
Forum: C++ Mar 30th, 2004 |
| Replies: 8 Views: 29,746 uhhh.. u obviously didnt write that code. massPounds is a variable, this is where u store the user's input. cin gets input from the user, and stores it in the massPounds variable. so, u wouldnt want... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 8 Views: 5,801 visual studio usually ships 'neutered', meaning you can't build standalone apps to distribute. depending on what version u have, this is may or may not be true. usually the expensive, ie.... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 1 Views: 2,660 try using the 'chdir' command to change directories. the problem with using system("cd"), is that the 'cd' command only affects the current process executing it. after that process terminates, the... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 12 Views: 6,041 |