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
Ranked #37.0K
~232 People Reached
Favorite Forums
Say Hello! x 2
2 Posted Topics
[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, …
[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 …
The End.