mario (less comfortable) (C)

Поделиться
HTML-код
  • Опубликовано: 16 янв 2025

Комментарии • 96

  • @marianacruz5616
    @marianacruz5616 4 года назад +403

    I just loved the false sense of confidence I got after doing the "hello world" just to get slapped in the face by reality when this mess came along

  • @harshitewari
    @harshitewari 6 лет назад +223

    To be brutally honest, seeing that other people also struggled with this, low-key makes me feel better. I hope I can crack it after this tutorial.

  • @YahyaZekry
    @YahyaZekry 6 лет назад +286

    The "less comfortable" just got not comfortable at all.

    • @davidwebb8061
      @davidwebb8061 5 лет назад +7

      i feel stupid after reading your comment.have to go back to med school, coding is not the thing for me i guess:(

    • @marcqlewin7335
      @marcqlewin7335 4 года назад

      lmao

  • @codybishop7526
    @codybishop7526 6 лет назад +129

    Thank goodness I am not the only one who felt this program was too complex for literally the FIRST problem set of the course. We went from "hello world" to creating our own algorithm. But, it IS for Harvard students, so...

    • @theendurance
      @theendurance 4 года назад +7

      @Justin Lillywhite its meant for harvard students, of course it is challenging. If you give up that easy you wont be successful in this field, or any other field

  • @davidsoutelo1815
    @davidsoutelo1815 7 лет назад +105

    This is too frustrating. I know what I have to do, and know how to do it, but I don't know how to write it, therefore I can't do anything. It's like getting a taxi, telling the driver the address, the directions, the distinctive features of the destination... but the driver will just shout 'error' until you tell them the taxi code for the destination

    • @jesstube112781
      @jesstube112781 6 лет назад +4

      Yea the driver is a computer so....yea

  • @trovador4952
    @trovador4952 2 года назад +37

    Me after programming "hello world": yeah!
    Me when doing Mario set:
    I'm trash

  • @mrzl_8424
    @mrzl_8424 4 года назад +42

    If you are reading this in 2020, don't give up, persevere! What is hard today is easy tomorrow! Think about the problem first, and then put it into code!

  • @mehl5820
    @mehl5820 4 года назад +15

    before this excersice i tought i would do well in harvard if i tried to...

  • @CenorinhaGamer07
    @CenorinhaGamer07 3 года назад +19

    Best feeling: Getting here and find out that I'm not alone!

    • @scarycrow3638
      @scarycrow3638 2 года назад

      4 months I hope you completed the course

  • @GhostkillerPlaysMC
    @GhostkillerPlaysMC 6 лет назад +29

    I chose less comfortable because I procrastinated and thought this would be quicker (probably is).. didn't think I would be having so much trouble..

  • @rflorian86
    @rflorian86 5 лет назад +35

    cs50 playin hard to get.

  • @RK-cy4ny
    @RK-cy4ny 7 лет назад +52

    This is driving me nuts!!!!!!

  • @ИринаРосова-я7д
    @ИринаРосова-я7д 7 лет назад +30

    u definetely have to be genius or smth to actually write this mario stuff

  • @snowmanman4508
    @snowmanman4508 2 года назад +2

    This problem seems braindead simple to me now but when I was doing the first time around it was very hard.
    Now Tideman is giving me headaches

  • @dasbrow69
    @dasbrow69 6 лет назад +6

    As a programmer (self taught) I thought it would be a good idea to audit this course to see what I've missed, foundations are always good. I feel sorry for you all... they want you produce a half pyramid with ## ie
    height 3:
    #
    ##
    ###
    You write the program and run the check50 program which fails because the check program is broken and expects a height of 3 to be 4 levels... ie
    #
    ##
    ###
    ####
    What's worse is that the problem set page shows you they want 3 actually levels not the 4 the check program wants... Unless I am missing something.

  • @olgagarus1867
    @olgagarus1867 7 лет назад +38

    Tip: watch Lecture 2 first - will make your life much easier

    • @svporqueno
      @svporqueno 5 лет назад +5

      And here I thought it was just me not getting the mario.c "less" problem...

    • @svporqueno
      @svporqueno 5 лет назад

      @sivan ferna Did the lecture 2 help you at all on this?

    • @simonitomar3347
      @simonitomar3347 4 года назад +1

      @@svporqueno what i was wondering too, should I watch it?

    • @ethanpoehlmann1670
      @ethanpoehlmann1670 4 года назад

      Is "Lecture 2" the lecture for the second week?

    • @everblvck5203
      @everblvck5203 4 года назад +5

      Does not fukin make your life easier, no fucking sir, if anything it makes more questions than answers. This class went from a hello world to mario, it went from easy mode to wtf mode im a matter of days.

  • @ed_tomeyan
    @ed_tomeyan 6 лет назад +6

    Seems I'm too stupid for this problem set. I have no idea how to solve it in C.

    • @ZamylaChan
      @ZamylaChan 6 лет назад +6

      Aw, no need to be discouraged! Let's just try to tackle this problem in more manageable chunks! :) Before jumping straight into C, try to solve the problem in a language that you understand already. Each time you watch this video, focus on a different aspect! Many of my hints will only be clear once you're well into solving the problem.
      Try to:
      1) do the problem "manually" yourself in a text editor;
      2) write out very specific instructions for a complete stranger to do what you just did in the text editor. [Maybe even have someone who doesn't know the problem follow those instructions to make sure you were as clear as possible!];
      3) convert those instructions to pseudocode, replacing your instructions with some 'code'-like language. ie for loops, do-while, the functions that I mention in the video;
      4) translate into C SLOWLY! Write, compile, and run small separate programs: One that just gets an int, one that just validates user input, one that just prints characters, etc... this will minimize the debugging that you do later!
      5) put all the pieces together, debug, and watch your program run!
      6) look back later after you've completed several more problems... and see how much you've learned, how quickly you can write mario now, and how far you've made it! :)

    • @ed_tomeyan
      @ed_tomeyan 6 лет назад +2

      Zamyla Chan Thank you. I hope I'll solve it in a few weeks)))

    • @svporqueno
      @svporqueno 5 лет назад +1

      Zamyla Chan I'm not even able to get the terminal to save my code changes at this point

  • @BenvelMusic
    @BenvelMusic 2 года назад +2

    wow this was so much clearer explanation than Brian's glad I found it it was one of the factors that helped me to solve the pset1

  • @doodleandy8036
    @doodleandy8036 3 месяца назад

    These comments are making me feel so much better! I thought I was the only one that thought this was too hard too soon! 😂

  • @BenvelMusic
    @BenvelMusic 2 года назад

    Hint: watch supersection week 1 from 2015 they explain about nested loops

  • @e.n85784
    @e.n85784 7 месяцев назад

    the fact that i understood this more than the new tutorial is mind blowing

  • @Smitty_Werbenjaegermanjensen
    @Smitty_Werbenjaegermanjensen 5 лет назад +16

    I am confusion

  • @jikal9032
    @jikal9032 6 месяцев назад

    Can we get one for "Thought they were less comfortable but instead got lost like a kid in a busy shopping mall?"

  • @instajoshi69
    @instajoshi69 2 года назад +1

    Anyone doing cs50x this year?

  • @PacManPark
    @PacManPark 7 лет назад +43

    zamyla makes this unnecessarily confusing

  • @orangeInk
    @orangeInk 2 года назад

    how to replace '.' with space.

  • @tranthetam
    @tranthetam 4 года назад +2

    When I'm searching for a hint, and (try) not a solution, I end up here in 2020 :D

  • @rossphillipgerard
    @rossphillipgerard 4 года назад +1

    Computers are so stupid we have to think in a dumb way to talk to them

  • @tuo9433
    @tuo9433 5 лет назад

    Do we have a recursion version for the solution?

  • @CroizBR
    @CroizBR 4 года назад +5

    I GOT IT, LET'S GO BOYS

  • @motalks2598
    @motalks2598 4 года назад +6

    i absolutely hate CS50 - only on week 1!

  • @arpitlal3
    @arpitlal3 6 лет назад

    Can't do it. Please help

  • @TheEpicunity
    @TheEpicunity 7 лет назад

    My GetInt isn't working. Please help quick.

    • @hunterchak8920
      @hunterchak8920 7 лет назад

      This is basic on how to write it
      int x = GetInt();

    • @ClarusMentis
      @ClarusMentis 6 лет назад +5

      try this
      int x = get_int()

    • @harshitewari
      @harshitewari 6 лет назад +2

      Make sure you have linked the cs50 library by-
      #include
      Then try getting an integer by
      int x = get_int("Enter Integer");

  • @southwestfresh77071
    @southwestfresh77071 4 года назад +1

    This doesn't need help me

  • @othmanzidane3938
    @othmanzidane3938 6 лет назад +9

    this is insanely tough for me, maybe my IQ is just too low :(

    • @michaelrandazzo3959
      @michaelrandazzo3959 4 года назад

      me too.

    • @jacoballen9425
      @jacoballen9425 4 года назад +6

      @@michaelrandazzo3959
      Nah dude. You can do it.
      Loop up how forloops and nested forloops work. It will help.

  • @tony-k
    @tony-k 6 лет назад

    Here is another explanation. After that I actually managed to solve it:
    ruclips.net/video/E3Oz3AjCYoQ/видео.htmlm6s

  • @KagimuBrian
    @KagimuBrian 7 лет назад

    Thank you Zamyla

  • @daniel10263
    @daniel10263 8 лет назад

    Zamyla!!! Nice to see you again!!!

  • @MarTCM
    @MarTCM 4 года назад

    LADIES AND GENTLEMAN!
    i have done it (im 15 btw)
    so if i can do it so can you!

  • @acermask8981
    @acermask8981 8 лет назад +5

    Zamyla !!! the BEST

  • @ThePureawesomness
    @ThePureawesomness 6 лет назад +6

    All of these commenters that don't understand probably haven't watched lecture 2 and reviewed the notes before starting the problem sets. If you watched the lecture and read the notes, every concept used in this problem set has been covered and explained.

    • @weewoo1625
      @weewoo1625 5 лет назад +26

      this assignment comes before lecture 2 so how would most people know what to do?

    • @jacoballen9425
      @jacoballen9425 5 лет назад +4

      @Kin Look up how nested forloops work, thats like 90% of how to solve this pset

    • @trefwoordpunk2225
      @trefwoordpunk2225 3 года назад

      The people that don't understand this likely haven't read ANYTHING in their lives....

    • @Нива-ш7з
      @Нива-ш7з 2 года назад +5

      @@trefwoordpunk2225 wow you're totally not judgemental.