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
~215 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for mcnally

[code] // gettingEvenNumbers.cpp // Purpose of this functions is to read in the numbers 1 - 20 // and print out only the even numbers using a loop of some kind. #include <iostream> #include <string> int main() { // Numbers being used. int x[] = {1, 2, 3, 4, 5, …

Member Avatar for mcnally
0
95
Member Avatar for mcnally

[code]#include <iostream> int main() { std::cout << "Hello, DaniWeb!\n" << "I'm learning C++ from a book. When I finish this book I'm sure I'll have tonnes of questions for you. Thanks in advance.\n"; std::cin.get(); return 0; }[/code] If I screwed that up, I'm embarrassed. Possibly that isn't as clean or …

Member Avatar for mcnally
0
120