Thread: Very NEW Beginer, Going mad

  1. #16
    Registered User
    Join Date
    Feb 2003
    Posts
    62

    I hope some of you who wrote these insulting messages read this one day

    First of all its not home work, why do you people always think its home work? I am trying to teach myself Its hard you know second why would you think I wont be a real programmer some day. thirdly if I was good enough, I would do peoples home work on here for them and not get anoyed,
    I will check back here from time to time.
    Also I know how to use IF statements, its just the text book I am reading to learn C++ asked me not to use If statments, otherwise I could of done it.
    Thanks.

    Its sad how programmers, can me mean.

  2. #17
    Registered User
    Join Date
    Feb 2003
    Posts
    62
    Also I am sorry did not realise this would go straight to the top pf the pile, dont I have egg on my face.

    Well if nothing else I will never give up, till I can programme like everyone else on here.
    Thanks, feel beter now (having a bad day)

  3. #18
    Registered User
    Join Date
    Feb 2003
    Posts
    162
    Ha, I totally forgot about these forums until now when I get the subscription email saying someone responded to this thread...amazing

  4. #19
    Been here, done that.
    Join Date
    May 2003
    Posts
    1,164
    Quote Originally Posted by chrismax2
    First of all its not home work, why do you people always think its home work?
    Because these are the same questions that get asked and it IS homeword 80% of the time. We're not psychic and since mostly student's post questions, it's a natural assumption

    Quote Originally Posted by chrismax2
    I am trying to teach myself Its hard you know second why would you think I wont be a real programmer some day.
    Because someone wanted to be a jerk and tell you that. The best programmers started at the bottom 2 and whoever said that to you was either frustrated or mean-spirited

    Quote Originally Posted by chrismax2
    thirdly if I was good enough, I would do peoples home work on here for them and not get anoyed,
    The you would deserve the grade instead of them. We don't do people's homework, we try to help them understand so they can do their own homework, and learn how to figure it out for the next program. If you do it for them, they learn nothing and you've stroked your ego.

    Quote Originally Posted by chrismax2
    Its sad how programmers, can me mean.
    This is true, but we are human. I'll bet non-programmers can be mean too.
    Definition: Politics -- Latin, from
    poly meaning many and
    tics meaning blood sucking parasites
    -- Tom Smothers

  5. #20
    Registered User heat511's Avatar
    Join Date
    Dec 2001
    Posts
    169
    Code:
    #include<iostream.h>
    main()
    {
    	highest=( (a>b) ? ((a>c) ? a : c) : ((b>c) ? b : c) );
    }
    im amazed that compiled. never seen syntax like that before. how does it work?
    "uh uh uh, you didn't say the magic word"
    -Jurassic Park

  6. #21
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >highest=( (a>b) ? ((a>c) ? a : c) : ((b>c) ? b : c) );
    This is just awful. You should avoid nested conditional operators.

    >how does it work?
    Like this:
    Code:
    if ( a > b ) {
      if ( a > c )
        highest = a;
      else
        highest = c;
    }
    else {
      if ( b > c )
        highest = b;
      else
        highest = c;
    }
    My best code is written with the delete key.

  7. #22
    Registered User heat511's Avatar
    Join Date
    Dec 2001
    Posts
    169
    ok i understand the syntax now... that is the pimpest thing in the universe
    "uh uh uh, you didn't say the magic word"
    -Jurassic Park

  8. #23
    Registered User
    Join Date
    Feb 2003
    Posts
    62
    Hey Just wanted to apologise, for how I wrote it. I was having a bad day yesterday. To be honest I never read the code they used anyway as I do belive on here you got to learn from yourself. I already had code, but It's not very good and the last thing I want is anyone wanting to see my attempt at programming until I am good and ready.
    "Been here done that", Thanks you madea lot of sense.
    Chris

  9. #24
    Registered User
    Join Date
    Feb 2004
    Posts
    127
    I titally agree with you WaltP .... and Chris dont be so angry .. they just advise you

  10. #25
    Registered User major_small's Avatar
    Join Date
    May 2003
    Posts
    2,787
    this thread turned pretty sour... what's the big deal with giving the person by example... the way I see it, this time they'll learn by example, so next time they'll be better prepared to do it on their own... then again that only fits in with my way of thinking... somebody who wants the knowledge will look over and try to undestand the code and then try it on their own...

    usually I just give some base code for the person to modify to their needs... but that's mostly because I'm too lazy to tailor the code too precisely...
    Join is in our Unofficial Cprog IRC channel
    Server: irc.phoenixradio.org
    Channel: #Tech


    Team Cprog Folding@Home: Team #43476
    Download it Here
    Detailed Stats Here
    More Detailed Stats
    52 Members so far, are YOU a member?
    Current team score: 1223226 (ranked 374 of 45152)

    The CBoard team is doing better than 99.16% of the other teams
    Top 5 Members: Xterria(518175), pianorain(118517), Bennet(64957), JaWiB(55610), alphaoide(44374)

    Last Updated on: Wed, 30 Aug, 2006 @ 2:30 PM EDT

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Makes me mad..
    By Warrax in forum A Brief History of Cprogramming.com
    Replies: 12
    Last Post: 05-01-2007, 07:49 AM
  2. I, Robot -- It's a trick, and I'm mad.
    By Jeremy G in forum A Brief History of Cprogramming.com
    Replies: 12
    Last Post: 07-15-2004, 01:57 PM
  3. mad libs
    By CheesyMoo in forum C++ Programming
    Replies: 17
    Last Post: 01-18-2003, 11:14 PM
  4. mad scrolling
    By Unregistered in forum C Programming
    Replies: 3
    Last Post: 11-20-2001, 02:38 PM
  5. Spam :mad:
    By mithrandir in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 09-22-2001, 10:43 PM