Forum: C++ Dec 10th, 2008 |
| Replies: 4 Views: 400 Nah, that worked, thanks. |
Forum: C++ Dec 9th, 2008 |
| Replies: 7 Views: 416 You'll want to clean this section of code up:
if (temp < 0)
pop2 = pop1 - (pop1 * 0.12);
cout<<"In "<<year", the deer population is "<<pop2<<endl;
else if (temp = 0)
... |
Forum: C++ Dec 9th, 2008 |
| Replies: 4 Views: 400 I'm trying to create an array that can be resized, and automatically renumbered, at the moment, what I have works for up to a 3x3 array, but anything larger than that doesn't work. I've tried doing... |
Forum: C++ Dec 9th, 2008 |
| Replies: 1 Views: 316 I'm working on a program that has a class Board, and two inherited classes that will implement different games, but I'm having problems with setting up the initial Board class. The problem is that I... |