C++ ROCK PAPER SCISSORS game for beginners 👊

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ธ.ค. 2024

ความคิดเห็น • 47

  • @BroCodez
    @BroCodez  2 ปีที่แล้ว +21

    #include
    #include
    char getUserChoice();
    char getComputerChoice();
    void showChoice(char choice);
    void chooseWinner(char player, char computer);
    int main() {
    char player;
    char computer;
    player = getUserChoice();
    std::cout

  • @ahmadosama2652
    @ahmadosama2652 2 ปีที่แล้ว +16

    In chooseWinner function if we use if statement it will be more easier
    if(user == computer)
    std::cout

    • @realanderect6467
      @realanderect6467 ปีที่แล้ว +2

      did the same🤝

    • @ahmedghaly7161
      @ahmedghaly7161 5 หลายเดือนก่อน

      @@realanderect6467 can i ask where are you now at the programming guys ?

    • @alwinsanthosh6878
      @alwinsanthosh6878 5 หลายเดือนก่อน

      I'm only a beginner, but i feel like a dumbass for not recognizing this simpler form of code.

    • @realanderect6467
      @realanderect6467 4 หลายเดือนก่อน

      @@ahmedghaly7161 I am currently doing DSA in java... i liked java more than c++

  • @FrederikWollert
    @FrederikWollert 8 หลายเดือนก่อน +4

    I really like your C++ series. Keep it up. Please make more C++ Videos. So, let's defeat the TH-cam algorithm.

  • @Zyxmil
    @Zyxmil 11 หลายเดือนก่อน +4

    I don't know if anyone will see this, but I've tried making this program before seeing this video, what do you guys think on it
    #include
    #include
    char random(char comp);
    void final(char comp);
    int main()
    {
    std::cout answer;
    char finalanswer = toupper(answer);
    if (finalanswer == 'R' && comp == 'r')
    {
    std::cout

    • @OdonChess
      @OdonChess 2 หลายเดือนก่อน +1

      seems cool but im just stating to learn c++ yesterday i dont understand a thing

  • @djprgotube
    @djprgotube 16 วันที่ผ่านมา

    Before watching this I also made an rps game, and although I used fewer lines of code, the if statements were messy for me. Great educational vid!

  • @leomabuku1904
    @leomabuku1904 9 หลายเดือนก่อน

    This was weirdly silly but impressive
    Way of thinking implementation

  • @ChekoleMajlan
    @ChekoleMajlan 2 หลายเดือนก่อน

    the way u did it was amazing thanks a lot

  • @zabiullahsafdari-to8zw
    @zabiullahsafdari-to8zw 11 หลายเดือนก่อน

    Great

  • @sliky7317
    @sliky7317 2 ปีที่แล้ว

    I made this game before you made this video... but mine was so janky, It works though. I keep having issues with some things like while loops, and I think it's because I'm using an online compiler because I don't know any downloads for chromebook. Thanks for the free coding lessons man. Have a great day!

  • @criminalx7099
    @criminalx7099 2 ปีที่แล้ว

    well explained bro

  • @NoBeerNoLife1789
    @NoBeerNoLife1789 ปีที่แล้ว +1

    very thanks dude

  • @u___f
    @u___f ปีที่แล้ว +2

    Hi everyone, I added a do while loop in the main function to enable repeating the game and tried to display a counter each for the wins, ties and losses
    But the counters only worked when I copied the code from the chooseWinner function into the main function
    Does anyone have an idea how it would work with using the function?
    Thanks in any case

    • @u___f
      @u___f ปีที่แล้ว

      *it worked after using „int&“ in the function definition and declaration but not with „int“ only

    • @realanderect6467
      @realanderect6467 ปีที่แล้ว

      @@u___f yeah it is so because & means reference to a variable (address of a variable)... so if u just use int the value of the variable will go into the function and any change in u do in the function will not change the value of the variable... but if you use reference variable (&int), the address of the variable will go into the function and any change in u make in the function will change the value at that specific address.. thereby changing the value of the variable in the main function.

  • @Zzzoott
    @Zzzoott 6 หลายเดือนก่อน +2

    My solution,
    #include
    #include
    int start() {
    std::cout > x;
    return x;
    }
    std::string raand() {
    srand(time(NULL));
    int a;
    a = 1 + rand() % 3;
    std::string str1;
    if (a == 1) { str1 = "ROCK"; }
    if (a == 2) { str1 = "PAPER"; }
    if (a == 3) { str1 = "SCISSOR"; }
    return str1;
    }
    int foo(int a) {
    int score(0);
    for (int i = 1; i

  • @yellowhellow-wi9gi
    @yellowhellow-wi9gi 2 หลายเดือนก่อน +1

    thank a lot

  • @hupmitom5509
    @hupmitom5509 ปีที่แล้ว

    the game is so funny, thank you.

  • @lue224
    @lue224 2 ปีที่แล้ว +1

    why are you making so many functions you only need them once?

    • @ChrisVideosGreek
      @ChrisVideosGreek 2 ปีที่แล้ว

      to make it beginner-friendly

    • @lue224
      @lue224 2 ปีที่แล้ว

      @@ChrisVideosGreek yes but without it's simpler imo

    • @oximas-oe9vf
      @oximas-oe9vf 2 ปีที่แล้ว +4

      @@lue224 it makes the program look cleaner and more understandable

    • @mrrobot-e4b
      @mrrobot-e4b ปีที่แล้ว

      to organise the code in a more readable way

  • @TheBoringGuy-h2z
    @TheBoringGuy-h2z 11 หลายเดือนก่อน +2

    pls rate my code:
    #include
    #include
    using namespace std;
    int main()
    {
    bool run = true;
    while(run)
    {
    //all the variables
    std::string player;
    std::string computer;
    srand(time(NULL));
    int random = rand() % 3 + 1;
    std::string win;
    //variable for wanting to continue
    std::string want_continue;
    //main
    std::cout player;
    //code for the computer
    if(random == 1)
    {
    computer = "rock";
    std::cout

  • @albatablays24
    @albatablays24 ปีที่แล้ว

    you wrote void showChoice(char choice) where is the choice. You haven't declared a choice data in any of the function

    • @realanderect6467
      @realanderect6467 ปีที่แล้ว

      choice is a function variable which is declared in the function parameter list... when we called the function in the main function ( showChoice(player); ) that actually means that the value of choice in the function will be equal to player's value;

  • @ayaanshaikh2018
    @ayaanshaikh2018 5 หลายเดือนก่อน

    but why is the computer losing against me at every try??
    can we fix that ??

  • @ЦветелинМаринов-е3з
    @ЦветелинМаринов-е3з 9 หลายเดือนก่อน

    The name of the theme u use ?

  • @Sahan-od3vq
    @Sahan-od3vq 5 หลายเดือนก่อน

    bro why do you prefer defining functions rather than typing in whole like you did in python?
    is there any reason ??
    does defining functions reduces the compiling time??

    • @FaiyazHasan-o1c
      @FaiyazHasan-o1c หลายเดือนก่อน

      It's okay if you write other functions before you use it in the main function. If you write it after main function without defining it first, it most likely won't work cuz the interpreter/compiler is simply not aware of the function you are calling.

    • @Sahan-od3vq
      @Sahan-od3vq หลายเดือนก่อน

      yeah what u said is right.but, I mean why did he define functions for each operation rather than writting the same code in main function without defining any function?

    • @FaiyazHasan-o1c
      @FaiyazHasan-o1c หลายเดือนก่อน

      @@Sahan-od3vq It's easier that way. Writing everything in the main function can make it a bit complicated. However you are free to do it if it works.

    • @Sahan-od3vq
      @Sahan-od3vq หลายเดือนก่อน +1

      @@FaiyazHasan-o1c yes a valid reason.Thank you.

    • @FaiyazHasan-o1c
      @FaiyazHasan-o1c หลายเดือนก่อน

      @@Sahan-od3vq You are most welcome

  • @EliaPerzian-xy3co
    @EliaPerzian-xy3co ปีที่แล้ว

    Can someone please explain to me the void showchoice(char choice) why did we enter char choice and didnt use choice

    • @willixm2520
      @willixm2520 ปีที่แล้ว +1

      when declaring the function, because we're passing in a variable through it, we have to also declare the datatype of the variable, which in this case is a char. Just like when creating a variable, we want to specify its datatype. Hope that helps and correct me if I'm wrong.

  • @thecrazytv6766
    @thecrazytv6766 7 หลายเดือนก่อน

    I did it a little bit different but it still works, don't mind the language it's serbian...
    #include
    #include
    char UnosKorisnika;
    void papir(char UnosKorisnika);
    void kamen(char UnosKorisnika);
    void makaze(char UnosKorisnika);
    int main()
    {
    srand(time(NULL));
    std::cout