FreeCodeCampChina / freecodecamp.cn

FCC China open source codebase and curriculum. Learn to code and help nonprofits.

Home Page:https://fcc.asia/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

输入参数检验结果是正确的,但是就是通不过运行

BigFatStar opened this issue · comments

My code:

function golfScore(par, strokes) {
  // 请只修改这条注释以下的代码
  if (strokes === 1) {
    return "Hole-in-one";
  }
  if (strokes <= par - 2) {
    return "Eagle";
  } else if (strokes == par - 1) {
    return "Birdie";
  } else if (strokes == par) {
    return "Par";
  } else if ( strokes == par + 1) {
    return "Bogey";
  } else if (strokes == par + 2) {
    return "Double Bogey";
  } else if (strokes >= par + 3){
    return "Go Home";
  }
 
  // 请只修改这条注释以上的代码
}

// 你可以修改这一行来测试你的代码
golfScore(4, 7);