Added: 4 years ago
From: 2000ContourSVT
Views: 23,538
Sort by time | Sort by thread (beta)

Link to this comment:

Share to:
see all

All Comments (66)

Sign In or Sign Up now to post a comment!
  • I need to make a half-pyramid for my class. I can't figure it out.

  • This makes me cringe every time I hear you say it. What you are using there is the texted editor inside of an IDE, not a compiler. The compiler is a piece in the IDE as well as the text editor.

  • YES you got rid of all that echo for tutorial 3!!!

  • i did not see the out put,

  • its nice, but i cant see the output of the first 2 programs.

  • I followed the steps and my loop doesn't make 10, it just goes on forever, please help.

  • @SecretRobotNinja7 hey there ... mind telling me how you got that .My assignment asks me to make an infinite loop =) ...

  • @SonOfTerra92

    I figured it out. Instead of putting "i" for the loop, I put 1.

  • @SecretRobotNinja7 Right then thnx ... I'll try that .Are you using bloodshed dev c++ ??? =)

  • @SonOfTerra92

    Actually, I use Microsoft Visual C++ Express.

  • @SecretRobotNinja7 Hey there ... thnx for replying earlier . I appreciate it . Anyways i've got a course work assignment coming up in the next few weeks .My lecturer asked me to program a simple game ... i came up with the concept of the game (its a numbers game). I was wondering if you would be interested in helping me in some of the programming by just giving me some tips

    If your interested then I can PM you the details ... =) come on it'll be fun =) ....

  • @SonOfTerra92

    I'd love to help, but I just started learning C++, and I'm really new to it.

    I barely know how to make a caculator, let alone a game.

    Sorry I can't help. =P

  • @SecretRobotNinja7 Ok then .... never mind =) ... but if you ever interested just give me a holla !!!

    By the way check out my channel .its about science with a twist ...

  • hey i can't see the .exe file, its cut off the screen after you compile it in 3/4 of your videos, which makes me sad! i think your tutorials are easy to understand...i just got this in about 10 mins as oppose to my professor trying to explain this in 2 hours. thanks!

  • i was trying to remove the cursor, but i guess that was yours haha

  • i cant build and run my program.. what shall i do??

  • how would make a source code in which i wanted the output to be stairs. like the countdown from 10 asterisks down to 1 on each row

  • why did you use Dev-Cpp for this one? also, what the hell does iy say lol.

  • Add "&fmt=18" to the end of the video URL (without the quotes) and it becomes a lot more readable.

    It's a simple trick that makes youtube vids kinda HD.

  • LOL...i need bufocals..hard to see mate.

    Har-Har, but I thank you, anyway...

    O_o......Bifocals.

  • thanks guy!

  • fuken shit video

    ur previous ones were good but u cant even c most of the fuken screen

  • @maxmat666 if you dont like it then piss off

  • dude these would be good if you actually recorded your whole screen we can't see half of what your doing at any given time its retarded

  • LOL, this is very similar to a C++ tutorial serie I am making. What really caught my eye is that I just uploaded my 3rd tutorial, and it was ALSO about loops and "if"! The similarities doesn't stop there either. :P Almost looks like I ripped you off. :P

  • How do you write the or logical operator

  • "||", that is two pipe-characters. the logical AND operator is "&&". There is no logical XOR native to C++, though.

  • can you make a video on how to make 5 X 5 tables please cause i'm having problems on my class thanks

  • LET ME SEE THE FUCKING OUTPUT

  • what do \n does?

  • \n = new line

  • its the same as endl, but saves space.

    it adds a line.

  • HAHA "dag gummit hyuk"

  • better watch ur video before upload them u idiot

  • Your nice...

  • look i appreciate ur video dude but

    obviously u don t watch it before u upload

  • It isn't mine, plus the point still remains.

  • @Lewis120993 Whose nice?

  • i don't get what any of this is lol i just

    stumbled on it lol i don't get it :P

  • Why are you alive? Seriously, couldn't god have done something more productive with his time?

  • couldn't have god prevented fucking nerds like you? you fucking fag stfu and go back to this garbage it was meant to be a joke cause honestly i don't know what the fuck this shit is and could i really give a shit? no i don't because this shit is gay

  • Its not gay since this language writes most if not all the programs you might use! including games like WoW, Doom and others.

  • hm interesting

  • :) yep

  • Indeed!

  • If you don't care, don't give a shit, why are you watching this and why are you leaving comments? This is no place for children who are looking for educational things on youtube. Go back to watching your rap videos. Even better, get a decent education.

  • cause i just stumbled upon it and didn't realize what it was so maybe just keep your mouth shut and enjoy the fucking video and maybe just leave it at that?

  • It's not too late to remove your comment you posted previously. Let me tell you a secret: It makes you look stupid. And yes we can just leave it at this. Just for the record, the reason you can talk shit on the net like this is because of things like c++, but apparently it is homosexual. Calling things "gay" also doesn't make you look very good.

  • You really have to wonder how insecure and backwards someone is to think being gay is some kind of massive failing on a person's part.

  • @Nerdbag001 This shit is gay? you know the operating system you are using, well its Programmed mostly in C, you know this web browser you are using, prbably programmed in C or C++.

  • dude i have been getting lectures on it for 4 weeks and i still dont know lol

  • ei who can help me in my problem...

    i realy need some help.. gonno pass this project in october 14 2008..

    pls reply,,

    those who want to help me pls give me your email and i wiil send the problem to you..

  • "For i = " Your thinking VB my friend

  • these tutorials are really good and help me alot, keep it up :)

  • dude! adjust the screen!! i cant see the output!!!

  • there's a third way to make for-loop. you can use the do-statement as well. like for example:

    do

    { cout << i ++ << endl;

    }while(i <10)

    i'm just a beginner though but i know something about programming already :)

  • A do-while loop ensures that the loops body is executed at least one time, no matter what. This is because the loop condition is evaluated AFTER the body is executed. This is called a "posttest loop". While and for loops are called "pretest loops". This is because their loop conditions are tested BEFORE the body is executed. If the condition is false, then the body is not executed, and the loop is bypassed altogether. If a do-while's loop condition is false, then the body only executes once.

  • i couldnt see what u put after the i = 0 and the <=10

  • I put "i++" so that the i will increase one each time.

  • no i ment the ; the semicolon i couldnt see what it was but i figured it out

    for(int i = 0; i <=10; i++)

  • Errr.. Every time i run a programm with visual C++ 2008 i get "press key to continue.." so i press.. then it again ses "Press key to continue..." i press again.. then it quits.. am i doing something wrong?

  • no take out your system pause it will take one of them away.

  • is your system pause the first or last statement in the loop. that happens to me sometimes.

  • What programm u use to tape this?

  • I used Camtasia Studio 5.

Loading...
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more