Please tell me 🙂 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please tell me 🙂

(1) Why i am unable to write rock , paper , seccior in place of r , p , s in dict[50] ? How may i ? (2) why it is giving wrong winner when rock vs paper ? https://code.sololearn.com/cRaAthdnqI1I/?ref=app

15th Apr 2022, 10:13 AM
Abhay mishra
Abhay mishra - avatar
5 Answers
+ 1
It's a single dimentional character array so you can write characters only, not strings.. If you want string then use 2 dimensional array dict[3][50]; Add return type for: int greater(char player, char computer); Edit: Oh.. 2nd question!!! For : 2 can some other may answer, need time to check
15th Apr 2022, 10:31 AM
Jayakrishna 🇮🇳
0
Jayakrishna🇮🇳 thanks sir ☺️ please answer 2nd questions also whenever you have time .
15th Apr 2022, 10:46 AM
Abhay mishra
Abhay mishra - avatar
0
To check you winner change your RPS to an enum, use math to see if it's 0 1 or 2 difference, 0 is a tie 1 means P or S won 2 means R won.
15th Apr 2022, 11:18 AM
William Owens
William Owens - avatar
0
William Owens actually sir it is giving me wrong winner only when user choose rock and system choose paper . Otherwise in all conditions it is giving right answer i think .
15th Apr 2022, 11:23 AM
Abhay mishra
Abhay mishra - avatar
0
Abhay mishra According to your logic, here : You know, Either if or else executes so for any value other than player = 'p' and system 's', it returns 0; if ((player == 'p') && (computer == 's')) { printf("win %c\n",computer); return 1; } else { printf("win %c\n",player); return 0; } You should go like : if ( player == 'p') { if(computer=='s') return 1; else return 0; .. } else if(player == 's') { ... .. } else { ... }
15th Apr 2022, 12:35 PM
Jayakrishna 🇮🇳