473,322 Members | 1,522 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Comments and Queries on Programming Classes by Ganon11

Banfa
9,065 Expert Mod 8TB
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
Dec 5 '06 #1
12 1659
sonic
40
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.
Dec 5 '06 #2
Ganon11
3,652 Expert 2GB
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.
Dec 5 '06 #3
hello!am million thanks to ganon11 for the lessons!very helpful!

looking forward to more of it!finally i am learning programming
Dec 6 '06 #4
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
Dec 6 '06 #5
jacoder
13
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 ;)
Dec 15 '06 #6
AricC
1,892 Expert 1GB
I still think printf & scanf look 1000% better than cin & cout. Something about the look of it.
Dec 22 '06 #7
Ganon11
3,652 Expert 2GB
I haven't learned printf and scanf - as long as I've been doing C++ it's been cout and cin.
Dec 22 '06 #8
Banfa
9,065 Expert Mod 8TB
I think it is what you lkearnt first that you like best!
Dec 23 '06 #9
Ganon11
3,652 Expert 2GB
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.
Feb 14 '07 #10
ilikepython
844 Expert 512MB
Quick question:
I tried to do your little exercise at the end and I came up with this:
Expand|Select|Wrap|Line Numbers
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.     int a;
  8.     int b;
  9.     int c;
  10.     cout << "Enter an integer: " ;
  11.     cin >> a;
  12.     cout << "and another: " ;
  13.     cin >> b;
  14.     cout << "and another: " ;
  15.     cin >> c;
  16.     cout << "a = " << a << "     b = " << b << "     c = " << c << "    Total sum = " << a+b+c << endl;
  17.     string x;
  18.     cout << "Enter a word: " << endl;
  19.     cin >> x;
  20.     cout << "Enter a sentence: " << endl;
  21.     string z;
  22.     getline(cin, z);
  23.     cout << "x = " << x << "     z = " << z << endl;
  24.     system("PAUSE");
  25.     return 0;
  26. }
  27.  
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??
Mar 18 '07 #11
oi123
10
I was wondering if I could have a link of creating classes by Ganon11 :D because I'm kind of confuse about classes.
May 22 '07 #12
TRScheel
638 Expert 512MB
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.
Jun 14 '07 #13

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: lawrence | last post by:
I've been bad about documentation so far but I'm going to try to be better. I've mostly worked alone so I'm the only one, so far, who's suffered from my bad habits. But I'd like other programmers...
17
by: lkrubner | last post by:
I've got a PHP application that's 2 megs in size. Of that, my guess is 200k-400k is comments. Do they impose a performance hit? I've been postponing any kind of optimization, but at some point I'll...
5
by: Alex | last post by:
Hi all, We're looking at a vendor who uses the InterSystems Cache Database Platform, but our IT department has zero experience with this system. This software package will have a pivotal and...
3
by: Tommy Lang | last post by:
I am working on this project and I need some help/pointers/comments to get me started, I am stuck. The program will be used to store information in an array while it is running. I need to store...
35
by: R. Rajesh Jeba Anbiah | last post by:
Nowadays in PHP world, the "noise" is about upcoming PHP6 <http://phplens.com/phpeverywhere/?q=node/view/212> <http://www.planet-php.net/>. Do c.l.php readers have any comments or suggestions? ...
3
by: Paul Loveless | last post by:
Hey all. I've noticed while programming in C# using vs.net 2003 that my xml comments (ex. the ///<summary> comments) will not show up in intellisense or the object browser unless all of the...
6
by: planetthoughtful | last post by:
Hi All, I've written my first piece of practical Python code (included below), and would appreciate some comments. My situation was that I had a directory with a number of subdirectories that...
1
by: JosAH | last post by:
Greetings, Introduction This week we start building Query objects. A query can retrieve portions of text from a Library. I don't want users to build queries by themselves, because users make...
7
Banfa
by: Banfa | last post by:
Posted by Ganon11 So, you want to learn how to program! Good for you! Programming is a very intruiging and fun activity to pick up, and it's also a great career choice if you like it! Finally,...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.