Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

这个是BUG吗 #654

Open
ra1ph-L opened this issue Nov 27, 2019 · 1 comment
Open

这个是BUG吗 #654

ra1ph-L opened this issue Nov 27, 2019 · 1 comment

Comments

@ra1ph-L
Copy link

ra1ph-L commented Nov 27, 2019

// 举例
function ourFunction(ourMin, ourMax) {

return Math.floor(Math.random() * (ourMax - ourMin + 1)) + ourMin;
}

ourFunction(1, 9);

// 请把你的代码写在这条注释以下

function randomRange(myMin, myMax) {

return Math.floor(Math.random() * (myMax - myMin + 1)) + myMin; // 请修改这一行

}

// 你可以修改这一行来测试你的代码
var myRandom = randomRange(5, 5.5);

@ra1ph-L
Copy link
Author

ra1ph-L commented Nov 27, 2019

这样写也能通过

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant