课程
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
function mynum(x,y){ sum=x-y; if(sum==0){ return "两个数最大值是"+x"和"+y; } else if(sum>0){ return "两个数最大值是"+x; } else{ return "两个数最大值是"+y; } } document.write(mynum(5,3)+"<br>")
来源:5-6 编程练习
小靓仔1
2019-12-19 15:19
哪里错了,为什么出不来
写回答
关注
1回答
祥什么哟
2019-12-19 15:51:32
已采纳
"和"
前面少了加号 +
0
0
JavaScript进阶篇
本课程从如何插入JS代码开始,带您进入网页动态交互世界
468061 学习 · 21891 问题
查看课程
相似问题
function num(x,y){ //函数体,判断两个整数比较的三种情况 if(x>y){ return x; } else if(x=y){ return "相等"; } else{ return y; } } //调用函数,实现下面两组数中,返回较大值。 document.write(" 1 和 4 的较大值是:"+
回答 4
else if(x<y){return y;}和else {return "两数相等";}顺序不一样导致结果不一样
回答 1
为什么这样写不显示,x>y,x==y,else
回答 5
document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>"
回答 4
document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>");
回答 1
打开慕课网App查看更多内容