Forum: C++ May 9th, 2008 |
| Replies: 3 Views: 444 the problem lies when the move checks to make sure it is valid, every move will display valid or not valid, and the code always displays not valid everytime
#include <iostream>
#include <fstream>... |
Forum: C++ Apr 14th, 2008 |
| Replies: 8 Views: 769 I'm extremely new to the whole programming thing and I'm sorry to say I don't know what you mean by a debugger....where is it located in visual studios and how does it work??? |
Forum: C++ Apr 14th, 2008 |
| Replies: 8 Views: 769 well here is the assignment....
Write a complete C++ program that includes the functions (written by you - not existing string library or cstring functions): int length (char someText[])
o... |
Forum: C++ Apr 14th, 2008 |
| Replies: 10 Views: 2,350 I think it should be cin.getline... |
Forum: C++ Apr 14th, 2008 |
| Replies: 12 Views: 916 i think you should have two statements instead one just one
example
instead of
if ((num1 <=1 && num1 >=9) || (num2 <=1 && num2 >=9))
do this
if (num1 < 1 && num1 > 9)
and |
Forum: C++ Apr 14th, 2008 |
| Replies: 8 Views: 769 using visual studios C++ express 2005 edition
this is my code but when I run it I get a bunch of garbage...any suggestions would be greatly appreciated!!!!
#include <iostream>
#include... |