Comments and Queries on Programming Classes by Ganon11

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    Comments and Queries on Programming Classes by Ganon11

    I would just like to thank Ganon11 for putting in the hard work to create these classes for everyone to read.

    Any course with references to Star Wars gets the thumbs up from me :D
  • sonic
    New Member
    • Nov 2006
    • 40

    #2
    Gannon, excellent class. Enjoyed how you presented the material; it was very easy to understand, and the visuals of code you gave I'm sure will prove to be beneficial as we get into more complicated material.

    Thanks for taking the time to teach this class! I look forward to many more.

    Comment

    • Ganon11
      Recognized Expert Specialist
      • Oct 2006
      • 3651

      #3
      Very appreciative of your thanks I am. O.o

      I see a lot of people coming onto these forums asking a lot of questions that I used to ask, or that we solved in classes at school, so I figure I can help these guys a lot. Also, it seems to me that College Professors leave a LOT of research up to their students, whereas my high school classes have pretty much covered everything I needed to know for a project. So I'm going to try and make a point of explaining as much as I know that's relevant to assignments that I might include (That's right! You might have homework! :-P). Finally, I'm going to try and teach some C++ while having fun - who wants to listen to a boring old instructor!?

      I just hope that I am able to explain things thoroughly - I'll be the first to admit that I'm one of the more inexperienced programmers here. I'd like to thank Banfa for any input he has for the lessons, as I'm sure two heads are better than one in this case.

      Comment

      • pangsans
        New Member
        • Dec 2006
        • 47

        #4
        hello!am million thanks to ganon11 for the lessons!very helpful!

        looking forward to more of it!finally i am learning programming

        Comment

        • outofmymind
          New Member
          • Oct 2006
          • 45

          #5
          Originally posted by Ganon11
          Very appreciative of your thanks I am. O.o

          I see a lot of people coming onto these forums asking a lot of questions that I used to ask, or that we solved in classes at school, so I figure I can help these guys a lot. Also, it seems to me that College Professors leave a LOT of research up to their students, whereas my high school classes have pretty much covered everything I needed to know for a project. So I'm going to try and make a point of explaining as much as I know that's relevant to assignments that I might include (That's right! You might have homework! :-P). Finally, I'm going to try and teach some C++ while having fun - who wants to listen to a boring old instructor!?

          I just hope that I am able to explain things thoroughly - I'll be the first to admit that I'm one of the more inexperienced programmers here. I'd like to thank Banfa for any input he has for the lessons, as I'm sure two heads are better than one in this case.

          WOW Ganon11 your class is the best ;) thanks :) its very well explained, and Im impressed with way that you teach. You started from the really basic and your gradually going to teach more complex things.

          cant wait for the next class ;)

          outofmymind

          Comment

          • jacoder
            New Member
            • Oct 2006
            • 13

            #6
            Originally posted by outofmymind
            WOW Ganon11 your class is the best ;) thanks :) its very well explained, and Im impressed with way that you teach. You started from the really basic and your gradually going to teach more complex things.

            cant wait for the next class ;)

            outofmymind
            it is C im interested inn il learn C++ after i learn C good to see these tuts going up though guys as it helps alot of us n00bs out ;)

            Comment

            • AricC
              Recognized Expert Top Contributor
              • Oct 2006
              • 1885

              #7
              I still think printf & scanf look 1000% better than cin & cout. Something about the look of it.

              Comment

              • Ganon11
                Recognized Expert Specialist
                • Oct 2006
                • 3651

                #8
                I haven't learned printf and scanf - as long as I've been doing C++ it's been cout and cin.

                Comment

                • Banfa
                  Recognized Expert Expert
                  • Feb 2006
                  • 9067

                  #9
                  I think it is what you lkearnt first that you like best!

                  Comment

                  • Ganon11
                    Recognized Expert Specialist
                    • Oct 2006
                    • 3651

                    #10
                    Hey all readers,

                    I'm sorry for the delay in updating the 4th class - it's taken me a bit to write it, and it should be entering the final stages (checking by peers, etc.) soon - so look for the class to be up within the next week (hopefully).

                    Then I'll have to decide what to write the 5th class on.

                    Comment

                    • ilikepython
                      Recognized Expert Contributor
                      • Feb 2007
                      • 844

                      #11
                      Quick question:
                      I tried to do your little exercise at the end and I came up with this:
                      Code:
                      #include <iostream>
                      #include <string>
                      
                      using namespace std;
                      
                      int main() {
                          int a;
                          int b;
                          int c;
                          cout << "Enter an integer: " ;
                          cin >> a;
                          cout << "and another: " ;
                          cin >> b;
                          cout << "and another: " ;
                          cin >> c;
                          cout << "a = " << a << "     b = " << b << "     c = " << c << "    Total sum = " << a+b+c << endl;
                          string x;
                          cout << "Enter a word: " << endl;
                          cin >> x;
                          cout << "Enter a sentence: " << endl;
                          string z;
                          getline(cin, z);
                          cout << "x = " << x << "     z = " << z << endl;
                          system("PAUSE");
                          return 0;
                      }
                      everything works fine until it gets to the getline func. I enter in the input for variable x and after that it doesnt wait for me to enter input for variable z, it just displays "z = ".
                      I think it's because it gets the input from the first prompt because if i type in two words for 'x', the first one goes to 'x', and the second goes to 'z'.
                      How can I fix that??

                      Comment

                      • oi123
                        New Member
                        • Apr 2007
                        • 10

                        #12
                        I was wondering if I could have a link of creating classes by Ganon11 :D because I'm kind of confuse about classes.

                        Comment

                        • TRScheel
                          Recognized Expert Contributor
                          • Apr 2007
                          • 638

                          #13
                          Ganon, your last class is missing the declaration of 'decision' in one of the code snippets.

                          Or I could be blind.

                          One of the two.

                          Otherwise, good work. Really well done.

                          Comment

                          Working...