如何获得两个数字的平均值?

时间:2016-10-12 23:34:36

标签: arrays math average prompt microsoft-appstudio

var thing1 = prompt("what is a number")
var thing2 = prompt("what is a number")

alert(Math.min(thing1,thing2));

我能够得到两个成员中的最低成员 如何更改此值以给出所询问的两个数字的平均值?

1 个答案:

答案 0 :(得分:0)

这是一个获得平均值的函数:

function average(){
  var a = arguments, l = a.length;
  if(l){
    for(var i=0,n=0; i<l; i++){
      n += a[i];
    }
    return n/l;
  }
  return false;
}
// horrible idea to use prompt and alert
var prompt1 = prompt('enter a number');
var prompt2 = prompt('enter another number');
alert(average(prompt1, prompt2));