Forum: C++ Jan 26th, 2008 |
| Replies: 5 Views: 695 Check your for line, there's an additional semi-colon.
numbersuffix is not declared, consider including string or cstring headers (one or the other).
Not sure why window.h is included, it's... |
Forum: C++ Dec 30th, 2007 |
| Replies: 16 Views: 3,014 I'd guess that you should be able to determine if it's right or not and I'm suspecting you're guessing it's not.
I'd suggest removing the cout statements from the for loops of the assignment... |
Forum: C++ Dec 30th, 2007 |
| Replies: 16 Views: 3,014 This works if you don't mind the newline right from the get go.
if (i % 10 == 0)
cout << endl;
cout << alpha[i] << "\t"; |
Forum: C++ Dec 29th, 2007 |
| Replies: 16 Views: 3,014 You're on the right track. Another solution would be to use only one for loop and use an if else test condition to test for the first 25, do whatever...
As regards printing 10 per line, you... |
Forum: C++ Dec 17th, 2007 |
| Replies: 16 Views: 1,717 You may want to check out this http://www.ultimatepp.org/. It seems to have the VB style of putting an application together. I haven't tested it yet as I'm still in the process of getting a... |