In chooseWinner function if we use if statement it will be more easier if(user == computer) std::cout
@realanderect6467 Жыл бұрын
did the same🤝
@ahmedghaly71617 ай бұрын
@@realanderect6467 can i ask where are you now at the programming guys ?
@alwinsanthosh68787 ай бұрын
I'm only a beginner, but i feel like a dumbass for not recognizing this simpler form of code.
@realanderect64676 ай бұрын
@@ahmedghaly7161 I am currently doing DSA in java... i liked java more than c++
@FrederikWollert10 ай бұрын
I really like your C++ series. Keep it up. Please make more C++ Videos. So, let's defeat the KZbin algorithm.
@Zyxmil Жыл бұрын
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
@OdonChess4 ай бұрын
seems cool but im just stating to learn c++ yesterday i dont understand a thing
@djprgotube2 ай бұрын
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!
@zabiullahsafdari-to8zw Жыл бұрын
Great
@ChekoleMajlan4 ай бұрын
the way u did it was amazing thanks a lot
@criminalx70992 жыл бұрын
well explained bro
@sliky73172 жыл бұрын
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!
@leomabuku190410 ай бұрын
This was weirdly silly but impressive Way of thinking implementation
@Zzzoott8 ай бұрын
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-wi9gi4 ай бұрын
thank a lot
@NoBeerNoLife1789 Жыл бұрын
very thanks dude
@TheBoringGuy-h2z Жыл бұрын
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
@memezilla29648 ай бұрын
10/10
@ЦветелинМаринов-е3з11 ай бұрын
The name of the theme u use ?
@Sahan-od3vq7 ай бұрын
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-o1c3 ай бұрын
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-od3vq3 ай бұрын
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-o1c3 ай бұрын
@@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-od3vq3 ай бұрын
@@FaiyazHasan-o1c yes a valid reason.Thank you.
@FaiyazHasan-o1c3 ай бұрын
@@Sahan-od3vq You are most welcome
@Kaemi0273Ай бұрын
Guys, I have a problem. So, it doesnt show for me my choice and doesnt show me who won. It shows what the computer picked, but not what i did. Anyone knows whats up?
@u___f Жыл бұрын
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 Жыл бұрын
*it worked after using „int&“ in the function definition and declaration but not with „int“ only
@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.
@lue2242 жыл бұрын
why are you making so many functions you only need them once?
@ChrisVideosGreek2 жыл бұрын
to make it beginner-friendly
@lue2242 жыл бұрын
@@ChrisVideosGreek yes but without it's simpler imo
@oximas-oe9vf2 жыл бұрын
@@lue224 it makes the program look cleaner and more understandable
@mrrobot-e4b Жыл бұрын
to organise the code in a more readable way
@hupmitom5509 Жыл бұрын
the game is so funny, thank you.
@albatablays24 Жыл бұрын
you wrote void showChoice(char choice) where is the choice. You haven't declared a choice data in any of the function
@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;
@ayaanshaikh20187 ай бұрын
but why is the computer losing against me at every try?? can we fix that ??
@Devilhunter69Ай бұрын
Lmao fix what, i think its a skill issue from your computer's side
@EliaPerzian-xy3co Жыл бұрын
Can someone please explain to me the void showchoice(char choice) why did we enter char choice and didnt use choice
@willixm2520 Жыл бұрын
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.
@thecrazytv67669 ай бұрын
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