anyone know a good site to learn C++ or any resources to help me understand it better, sitting here reading basic stuff and im lost.
BernardMadoff
SBR Hall of Famer
12-12-09
6679
#2
Took it hated it, buy a basic book, textbook if you don't have one.
Comment
bachngocduong
SBR MVP
03-17-06
1826
#3
Originally posted by COYLO
anyone know a good site to learn C++ or any resources to help me understand it better, sitting here reading basic stuff and im lost.
holy shit lean C++ online
Comment
dr_wolf
SBR Sharp
07-20-10
417
#4
There is a lot of tutorials just try at youtube and you will find there
Comment
acarmelo1
SBR Hall of Famer
09-29-09
6321
#5
C++ is easy, where are you stuck up?
Comment
COYLO
SBR MVP
10-18-10
2844
#6
i have to write a simple programme to issue tickets ie:
$11 to visit a house and gardens or $7 just to visit gardens. i also need to add a loop to keep issuing tickets while there are people in the queue, followed by an instrustion to take a break.
use a while and have a question benign answered at the end like "Will you like to buy another ticket Y/N)
The while must be like
Example
int b ;
String a = "Y";
While a == "Y"**
printf("Press 1 if you want to go to the house and garden press 2 if you only want the gardens");
Scanf(b);
If a == 1
printf("You have been charged 11 dollars");
Else
printf("You have been charged 7 dollars");
Printf("Do you want to buy another ticket Y/N?";
Scanf(a);
**
printf("Have a great Day");
End
Something like that, there is more code to it. But that should be enough for you to finifsh it up.
Comment
COYLO
SBR MVP
10-18-10
2844
#8
thank you very much acarmelo
Comment
Blax0r
SBR Wise Guy
10-13-10
688
#9
Originally posted by acarmelo1
Do not use an if
use a while and have a question benign answered at the end like "Will you like to buy another ticket Y/N)
The while must be like
Example
int b ;
String a = "Y";
While a == "Y"**
printf("Press 1 if you want to go to the house and garden press 2 if you only want the gardens");
Scanf(b);
If a == 1
printf("You have been charged 11 dollars");
Else
printf("You have been charged 7 dollars");
Printf("Do you want to buy another ticket Y/N?";
Scanf(a);
**
printf("Have a great Day");
End
Something like that, there is more code to it. But that should be enough for you to finifsh it up.
nitpicking here, but it should be "if b ==1" since a is a string.
otherwise, that's pretty much the whole project.
Comment
RubberKettle
SBR Hall of Famer
12-28-09
6421
#10
Another homework assignment completed by SBR.
Comment
acarmelo1
SBR Hall of Famer
09-29-09
6321
#11
Originally posted by RubberKettle
Another homework assignment completed by SBR.
Comment
Kindred
SBR MVP
09-09-08
2901
#12
Originally posted by RubberKettle
Another homework assignment completed by SBR.
LMAO
More time to gamble now
Comment
COYLO
SBR MVP
10-18-10
2844
#13
yeah **** c++ time to study $$$$$
Comment
Eating Bookies
SBR Wise Guy
01-04-11
710
#14
Originally posted by RubberKettle
Another homework assignment completed by SBR.
hhaha nice. I want to get into programming but I dont know where to start.
Comment
COYLO
SBR MVP
10-18-10
2844
#15
Originally posted by Eating Bookies
hhaha nice. I want to get into programming but I dont know where to start.
it aint easy im sorry i started lol. then again i cant even get started
Comment
LiarGame
SBR Wise Guy
02-05-10
565
#16
Lol I wish sbr was around when I had C++
Comment
pico
BARRELED IN @ SBR!
04-05-07
27321
#17
hire a tutor on craigslist
Comment
king
SBR Wise Guy
01-15-09
506
#18
Originally posted by dr_wolf
There is a lot of tutorials just try at youtube and you will find there
I would advise not following youtube on learning c++ as most of them are not programmers that really understand the language. To the thread starter if you looking into getting in the field or programming you need to under the basic and fundamental first. I would advise you also not to go to a university where computer science is a big major. A lot of the possessor are not going to teach the fundamentals. You must come in knowing programming. You best bet is to take a course at a university that teaches the basic not places like ivy leagues, caltech or mit but something that is teaching friendly. Many city and state school might be the right place.
Comment
dr_wolf
SBR Sharp
07-20-10
417
#19
Originally posted by king
I would advise not following youtube on learning c++ as most of them are not programmers that really understand the language.
Yes and because the simple things can be learned this way,but if you want to learn you need to work.
Comment
Nittany Lion
SBR MVP
09-14-10
1639
#20
I hated my programming class when I was in college, can't stand that stuff.
Comment
dr_wolf
SBR Sharp
07-20-10
417
#21
never is too late to start learning
Comment
Naz18
SBR MVP
09-10-09
4277
#22
Originally posted by LiarGame
Lol I wish sbr was around when I had C++
Not gonna learn with other people doing your work.
Comment
Vesuvius
SBR MVP
02-19-08
3886
#23
Originally posted by acarmelo1
C++ is easy, where are you stuck up?
some people aren't computer savy, if you are just do a google search there are plenty of sites out there, I took a class and probably learned more online
Comment
goofyre
SBR MVP
04-20-10
1933
#24
I took C# in college for 2 semesters and its nice to know but definitely took some time to learn. I'm goin to try and learn php this summer though since it'd be a lot more helpful to me.
Comment
juuso
SBR MVP
10-04-05
2896
#25
c++ can be pretty challenging. Have to be good with maths/logical thinking.
Comment
CreaturE
SBR MVP
03-28-10
1081
#26
http://www.learncpp.com/ I'm sure you could have found it by typing in the same thing I did on google. "learn C++"
I've used it for a while now, it's pretty helpful. I'm sure I'll eventually need a formal class though, but for the time being, it's pretty useful.
Comment
spurginobili
SBR MVP
05-09-09
3065
#27
I took a programming class in college and dropped it the first week.
Comment
Maverick22
SBR Wise Guy
04-10-10
807
#28
Java > C++
Dude...dont you have a used bookstore in your town? Find one... there will be plenty of C++ books...
First... find a youtube video on understanding what exactly a variable is (is not a language specific concept).
I think once you get passed that... there are less things to discourage you.
Then, open up the book mentioned above, and put in work. There are no short cuts...
After that... Put in more work...
Rinse, and repeat.
If you want short cuts[or think they exist]... Stop now, because you are going to waste your time [someway or another].
Any gaps or questions... youtube your way into it... [BUT] dont use youtube as your only source of reference...
If you have some money to spare. Get a membership @ books24x7.com [You'll thank me afterwards]
-Maverick
Comment
4banger
Restricted User
04-20-11
29
#29
What is this? C+
WHAT DOES THIS MEAN C+? WHAT IS THIS
Comment
COYLO
SBR MVP
10-18-10
2844
#30
thanks guy's picking it up pretty easily now, that one question was kinda worded wrong on the assignment thats what threw me off.
Comment
dr_wolf
SBR Sharp
07-20-10
417
#31
So success in you learning have a nice day.
Comment
Naz18
SBR MVP
09-10-09
4277
#32
Originally posted by 4banger
WHAT DOES THIS MEAN C+? WHAT IS THIS
Thread title is C++ programming....should give you a clue.
Comment
horsiehung
Restricted User
10-31-10
258
#33
i learned basic programming in the 80s not much since then!
Comment
LordCC
SBR Sharp
01-28-11
417
#34
I tried taking a few programming classes in college like Visual Basic & C++. It was like greek to me and never have I been more frustrated in my life. It gave me headaches and something I could live without. To people that can do it, you have my respect, it was very difficult for me.