Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~419 People Reached
Favorite Forums
Favorite Tags
Member Avatar for nate12457
Member Avatar for nate12457

Can anyone tell me why this is happening? All the code and input files are below. Stack.h [code] #include <iostream> #include <vector> using namespace std; const char FILE_NAME[] = "palindrome.txt"; typedef char StackElement; class Stack { private: vector<StackElement> myVec; public: bool Empty() { return (myVec.size() == 0); } void Push(StackElement …

0
78
Member Avatar for nate12457

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 and implementation file are mine, while the driver file cannot be edited for this assignment. …

Member Avatar for nate12457
0
141
Member Avatar for nate12457

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: [code] #include <iostream> using namespace std; int main () { int number=3, count=2; while (number <= 100) { if ((number % count) …

Member Avatar for nate12457
0
74