Forum: C++ Feb 27th, 2008 |
| Replies: 0 Views: 668 Can anyone tell me why this is happening? All the code and input files are below.
Stack.h
#include <iostream>
#include <vector>
using namespace std;
const char FILE_NAME[] =... |
Forum: Java Feb 23rd, 2008 |
| Replies: 11 Views: 1,695 What is your opinion of the best beginner java book? |
Forum: C++ Feb 6th, 2008 |
| Replies: 2 Views: 1,437 Thanks Duodas, it compiles and now I only need to fix some logic things. |
Forum: C++ Feb 6th, 2008 |
| Replies: 2 Views: 1,437 I'm getting 3 unresolved external symbol errors. I think it's probably syntax but I can't seem to find it. This is a class I was supposed to write based on the professors specifications. The header... |
Forum: C++ Sep 19th, 2007 |
| Replies: 2 Views: 3,840 I took Narue's advice and found out that my code was a bunch of crap and rewrote the entire thing. It's working correctly now. |
Forum: C++ Sep 19th, 2007 |
| Replies: 2 Views: 3,840 The program is suppose to output all the prime numbers between 3 and 100.
It acutally outputs all numbers between 3 and 100.
My code is as follows:
#include <iostream>
using namespace std;... |