Forum: Geeks' Lounge Jun 3rd, 2005 |
| Replies: 10 Views: 2,161 First was the abacus...:) |
Forum: C++ Feb 4th, 2005 |
| Replies: 14 Views: 7,670 If you want your program to run more than once (the while loop), you should put
cout << "\nInput hours worked(0 to quit):";
cin >> hours_worked;
inside the loop:
do
{
cout << "\nInput... |
Forum: Geeks' Lounge Dec 23rd, 2004 |
| Replies: 11 Views: 8,635 Sure... Regarding the Darwin's theory, there might appear some species of reindeer with an "onboard turbo-jet engine" :LOL: |
Forum: Windows Software Nov 23rd, 2004 |
| Replies: 34 Views: 126,643 For best compression rates use WinUHA, free software, dld from www.winuha.com ; beats zip, rar, etc. But it's going a little slower than the rest. |
Forum: C Nov 5th, 2004 |
| Replies: 8 Views: 2,265 Try use "system(cls);" instead of "clrscr()". I assume you are using a newer compiler... |
Forum: C++ Sep 10th, 2004 |
| Replies: 14 Views: 5,449 Just put a cin.get() at the end of the code, exactly before return 0 command... |