Forum: C++ Sep 11th, 2008 |
| Replies: 5 Views: 777 The problem was in my loop condition. I had it so that the loop stopped processing when the value of dayNum[i] was equal to yourDay. That was dumb of me, but thanks for all your help. ^_^ |
Forum: C++ Sep 11th, 2008 |
| Replies: 5 Views: 777 Actually, it didn't even stop the processing. It just continued, and didn't change the value of dayNum. |
Forum: C++ Sep 11th, 2008 |
| Replies: 5 Views: 777 Thanks, I'll try that, but it'll stop it for both objects. |
Forum: C++ Sep 11th, 2008 |
| Replies: 5 Views: 777 Here's my problem. I'm writing a program that has the user input a string. That string is then compared to the values in a string array within a class.
Here's a sample of what I'm trying to do... |