Thursday, August 11, 2011

Programming


/*programming blog entry # 1 -  I Don't Get This */

#include <iostream>
int main () {
std::cout << " So i'm trying to learn C++ programming." << std::endl;
std::cout << " I don't get it. there's some stuff that makes sense, like inputs, outputs," << std::endl;
std::cout << " getting stuff like sentences or numbers to show up on a screen," << std::endl;
std::cout << " but then the next level stuff.. what is going on?" << std::endl;
std::cout << " maybe it's because I'm going too quickly? trying to finish" << std::endl;
std::cout << " learning the basics before school starts." << std::endl;
std::cout << " so many different concepts to learn, but i find it difficult" << std::endl;
std::cout << " to learn and retain information for later use if" << std::endl;
std::cout << " i don't know what it's used for when i learn the concept." << std::endl;
std::cout << " this isn't good. i need to figure out how i can help myself to" <<std::endl;
std::cout << " learn in different ways; profs in uni aren't going to stop and try to help me" << std::endl;
std::cout << " learn just because the way i learn isn't how they teach. blahh." << std::endl;
std::cout << " i just hope that by practising and using C++ enough that i'll be able to" << std::endl;
std::cout << " get the hang of it and hopefully i can store the concepts in my brain now," << std::endl;
std::cout << " and hold off long enough to find out what they're used for." << std::endl;
std::cout << " anyway, my dad says he'll help me understand programming. except.." <<std::endl;
std::cout << " it's been probably and possibly 10 + years since he's last done it.. and" << std::endl;
std::cout << " im willing to bet that a lot of things have changed since then. haha" <<std::endl;
std::cout << " but it's a nice gesture nevertheless! " << std::endl;
std::cin.get ();
//end of entry #1
return 0;
}

No comments:

Post a Comment

Feel free to leave a comment.