Forum: C++ May 1st, 2008 |
| Replies: 7 Views: 503 Holy crap I solved it guys!!! Thank you sooooooooo much the program works!!!
All I had to do was take out the +1 on
for (i = 1; i< NUMARCS+1; i++)
and change it too
for (i = 0; i<... |
Forum: C++ May 1st, 2008 |
| Replies: 7 Views: 503 it's telling me it's unable to handle exception when it poitns to that if statement |
Forum: C++ May 1st, 2008 |
| Replies: 7 Views: 503 I did, I tried changing all the 1's to 0's also, that didn't help, then I tried leaving them at 0's and bring down the numbers of everything that didn't work tried bringing it up.. I honestly can't... |
Forum: C++ May 1st, 2008 |
| Replies: 7 Views: 503 When I try to debug it, it points to this line but I don't know what's wrong w/ it...
for (i = 1; i<= NUMARCS+1; i++)
{
if (point[tail[i]] == 0)
{
point[tail[i]] = i;
}
} |
Forum: C++ Apr 30th, 2008 |
| Replies: 7 Views: 503 I thought i accounted for that though, by having i start at 1 in every itteration. I don't understand what I'm suppose to do to change it. I tried looking through the program and I don't have... |
Forum: C++ Apr 30th, 2008 |
| Replies: 7 Views: 503 Hey guys, I have been working on this program for my entire semester. I got it down to do what I want I think... except when I compile it, I get no errors or warnings (using Dev) and when I execute... |
Forum: C++ Apr 14th, 2008 |
| Replies: 2 Views: 745 Thanks,
Ok now I have another problem I'm trying to solve...
I have two cpp files, one was written by "DJ" it's dijsktras algorithm, and I want to utilize my program into it.
I was trying... |
Forum: C++ Mar 7th, 2008 |
| Replies: 2 Views: 745 Hey guys, I'm new here, I looked through the help also searched and couldn't find anything that helped. Although I will be using the Algorithms you guys have on this site.
anyways I only took a... |