/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a string字符串 * @param b string字符串 * @return int整型 */ #include<string.h> int getScore(char* a, char* b ) { // write code here int len = strlen(a);//比的总数 int count = 0;//计分 for(int i = 0; i < len; i++){ if(a[i] == b[i]) { //平局 count += 0; } else if((a[i]== 'R' && b[i] == 'S') || (a[i] == 'S' && b[i] == 'P') || (a[i] == 'P' && b[i] == 'R')) { //牛牛赢的情况 count += 1; } else { //牛牛输的情况 count -= 1; } } return count; }