Getting Average In 20 Input Number?

Sep 18, 2010

can i ask how to make this problem?input 20 number and print the average of the numbers..

View 5 Replies


ADVERTISEMENT

How To Find / Calculate Average Number

Feb 1, 2010

I need to find the average number in javascript. It is the only bit of javascript that I have to do in the course but it carries a high mark of which I cannot afford to lose. Any way the question is : "Write code to calculate the average height and write it out in the browser window"

<HEAD><TITLE> average</TITLE>
<SCRIPT LANGUAGE = "JavaScript">
//Experimental results of Table 1 stored in arrays.
var Height = [15,16,17,18,19];
var Number = [2,1,6,4,2];

//Part (ii).
//Write code to declare and initialise new array to represent the third row of the table.
var avg = new Array(5)
var avg = ["60","80","187","180","114"] ;
avg[0] = "60";
avg[1] = "80";
avg[2] = "187";
avg[3] = "180";
avg[4] = "114";
//Part (iv).
//Write code to calculate the average height and write it out in the browser window.
avg = 0;
for (var count = 1; count <= 5; count = count + 1)
Array.average = function(){
var avg = 0;
for(var a = 0; a < this.length; a++){
avg += this[a];
} return avg / this.length;
};

document.write('average height is ' +avg + '<br>');
</SCRIPT></HEAD><BODY>
</BODY></HTML>

View 10 Replies View Related

Calculate Average From Dynamic Input?

Jul 12, 2010

i am trying to create a interface to average down variable amount of input and show them on screen as they type....this is what i came up with.....and the input box fields....these are dynamically created...

<input type="text" name="datup[0][4]" size="3" onchange="calc()" >
<input type="text" name="datup[1][4]" size="3" onchange="calc()" >
<input type="text" name="datup[2][4]" size="3" onchange="calc()" >

[code]....

View 1 Replies View Related

GPA Calculator - Using Select Input And Average It

Oct 7, 2011

My task was to build a simple GPA calculator using select input and Javascript to average it all together and return it to the user with his name. So I started with my form which looks like this

<tr><td>
<form name="GPA"
<p> Test 1</p>
</td><td>
<select id="v1">
<option value="4">A</option>
<option value="3">B</option>
<option value="2">C</option>
<option value="1">D</option>
<option value="0">F</option>
</select>
</td></tr><tr><td>

Now to the best of my knowledge that looks correct, I made sure to use integers as the values so I could average them using this function
<script type="text/javascript">
<!--
function Average(v1,v2,v3){
return Average (v1+v2+v3) / 3;
}
-->
</script>

View 6 Replies View Related

Phone Number Form - Error-check It So That Only Numbers Can Be Entered Into The Phone Number Input Field?

Sep 26, 2011

I am working on a Phone Number Form. The link of script: [url]

Questions:

(1)I wanted to know if code this script so that instead of the phone number appearing as: (123)456-7890

So that it appears as: (123) 456-7890 with a blank space after the ")"

(2)If that's simple, is there a way to error-check it so that only numbers can be entered into the phone number input field?

View 1 Replies View Related

Number Formatting (input And Output)?

May 28, 2009

I am new to Javascript and have a really simple script that I have wrote that allows users to answer two separate questions and then hit a calculate button and it some some simple math.That part is working, a working example is here Calculate Example (www.omgmod.com/calculate.html) and the code is :

<html>
<head>
<script type="text/javascript">

[code]....

View 7 Replies View Related

Use Variable Instead Of Number For Function Input?

Oct 29, 2009

I'm using simpleCart() javascript shopping machine for my page.The script accepts values in a specific syntax:onclick="simpleCart.add('name=Some name','price=23.4','quantity=1');"But because the price of the product is not always the same but comes up after previously made calculations, i want to parse the values in simpleCart() through another function. I have made the following one which gets the price from a textbox (resultAlmires) of a form (Almires), then converts it to american format (. instead of ,) makes it have one decimal only and finally parse it to simpleCart() with the use of a variable.However it doesn't seem to work:

function addAlmiri() {
var timi = document.Almires.resultAlmires.value;
timi = timi.replace(/,/,".");

[code]....

View 15 Replies View Related

Split Phone Number Input?

Aug 12, 2010

i see alot of forms where the phone number field is split into 3 boxes.

<form id="contactform" action="contact-submit.php" method="post">
<!-- form fields -->
<div class="form">[code].....

how do i add a phone number field in there that has 3 connected fields?

View 2 Replies View Related

Code To Only Allow Number To Be Put In A Input Field?

Aug 18, 2011

im using this code to only allow number to be put in a input fieldhow would i disable enter as well, in this code?

Code:
<SCRIPT TYPE="text/javascript">
<!--

[code]....

View 3 Replies View Related

Add If Statement To Limit Number Input By User To Less Than 20?

Oct 29, 2009

How would I add an if statement to limit the number input by the user to less than 20?

View 4 Replies View Related

Function Which Search Number From String Input?

Feb 19, 2011

I am working on form validation, i want to validate "Name" input field value . I want that in "Name" input field no number can be input.

Is there any function which search number/s from string ?? i.e if user inputs any number in that field with string i can display error message(Name can't be alpha numeric).

View 6 Replies View Related

Unlimited Number Of Additional Input Boxes?

Jun 21, 2010

I have to input an undefined number of rows of data. Existing data is read from a database. There is an Add button after the last row.

I can see how to add the next row: there is a hidden blank row with visibility set to 'none', which is turned to 'block' by clicking the Add button.

How can I continue to add rows? Do I need to have a large number of invisible rows and turn each one on as required? (I don't want to have to submit the form for each row, which would be another solution).

View 3 Replies View Related

How To Prevent Mozilla Using A Link If A Wrong Number Is In An Input Box

Feb 1, 2006

In my example the focus should only jump to textbox2 if you press the tab
key and if &#3911;' is in textbox1. That works fine.

However if you enter e.g. &#3912;' in textbox1 and click on 'Link', Mozilla
shows the alert 'Wrong numer' but also jumps to 'www.google.com'.
Opera and IE don't do that what's in my opinion the correct behavior. Code:

View 1 Replies View Related

JQuery :: Calculate Number Of Inputs Where Name Starts With Name^ And Input Value Is>0?

Sep 8, 2010

I have many inputs with name totalsum1,totalsum2,totalsum3 etc. I need to calculate number of inputs where name starts with "totalsum" and value is >0. I need to send result to another input with id="#rowtotal".My code:

$("#rowtotal").val(($("input[name^=totalsum]").val>0).size()); It's not working. Best RegardsRafa‚ Koszyk

View 1 Replies View Related

Submit Form On Number Of Characters In Input Text

May 28, 2006

I am trying to figure out how to submit a form via javascript, when a user enters in 9 characters into a text field. Can't seem to find out how to do this...

View 5 Replies View Related

Validation Of Input Type Text For Telephone Number

Sep 5, 2011

I'm trying to validate an input type text html tag with JS.There is an array (prefisso[]) with a lot of dial codes.The first 3 characters of the value to check must be one of the elements of "prefisso[]".The value to check must be longer than 9 chars (min 10).

View 2 Replies View Related

Allow User To Input A Number Say 1-200 And That Variable Would Make Up The Last Part Of An IP Address

Feb 5, 2011

I need to get a piece of code that will allow me to have a user input a number, say 1-200 and that variable would make up the last part of an IP Address that the user wants to browse to.

192.168.0.[variable]

Is there a script that will allow me to do that?

View 1 Replies View Related

Resolved Retrieve Number From A Form Input And Return It After Rounding?

Apr 10, 2009

I have a order form that adds up all the input boxes (45) and then totals them using function updatePrice() (which works) Im trying to have the output as XX.XX and cant figure out how to get the number from the id=txtTotal into the function round() and return the formatted number to txtTotal.

[Code]...

View 4 Replies View Related

Adding Multiple Input Boxes And Getting A Total Different Number Every Time?

May 19, 2011

ave this form which gets created by pulling stock/products from a database using PHP and beside every product in the row is a little box for input and in there the user can input the quantity of the product they want. Sometimes only 2 products will be outputted and other times 10 or more.What I want to happen is when the user enters in lets say 3 for the quantity of a certain product I want to get a total for how much 3 of that product will cost so I just do 3 multiply by the cost (which I have from the database) and then display the total cost down under where the list of the available products are and I want all this to happen dynamically obviously not using PHP because I don't want the page to have to reload every time they enter in a new quantity.

I know how to display text and stuff in certain divs with certain ID's using Javascript but I just don't know how to keep track of a form and do what I want to do when the number of inputs in the form can range from 1 to 10 or more. Im thinking of some sort of counter which gives every input a different ID like add 1 at the end of the ID name of the input as the PHP script loops through the database query displaying the products but I still don't know how to go about the Javascript side of things

View 2 Replies View Related

Creating A Form That Will Change The Number Of Fields Based On User Input

Jan 4, 2006

I have a form that collects information about up to 5 items. I would
like the user to be able to select from a drop down menu how many items
for which they want to compare information, and then have the form
change the number of input fields accordingly.

In other words, if the user selects enter info for 3 items, then input
fields for only 3 items are shown, if they change it to 4 items, then a
fourth column shows up in the table with the appropriate input fields.

View 2 Replies View Related

Finding The Highest Average?

Nov 5, 2011

need to find the highest average from all of the averages entered in this code, but i have to use an if statement only, no arrays.

// ** Work out average ** //
average= readingSum/totalReadings
// ** Put average into a category and display everything ** //

[code]....

View 15 Replies View Related

Display Average Of Five Into Sixth Box?

Apr 7, 2011

I am attempting a simple average calculation with javascript. I would like to have 6 boxes, 5 for the user to input a number in each, and the 6th box to display the average of the five. I have set up 2 functions to take the input, calc the total, then calculate the average. It seems to be taking the input, but on the rare occasions I get anything in the results box, it is NaN.

Here is my code:
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "[URL]">
<html xmlns="[URL]"><head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Calculate Average</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript">
/* <[CDATA[ */
Declare variables
var calcResult Result of numbers added together and deivided by 5.

function calcAvg() {
calcResult += document.numbers.box1.value;
calcResult += document.numbers.box2.value;
calcResult += document.numbers.box3.value;
calcResult += document.numbers.box4.value;
calcResult += document.numbers.box5.value;
return calcResult;
} function performCalc(calcResult) {
avgResult = calcResult / 5;
document.numbers.averageResult.value = avgResult;
} .....

View 6 Replies View Related

Calculating The Average/mean In An Array ?

Mar 30, 2011

Im trying to calculate the mean/average of numbers in an array.how can i get the length of an array to perform in a simple / maths problem whilst being flexiable to the length of the array?

function sum()
{
var i=0 [code].....

View 2 Replies View Related

Print Average Of Numbers?

Sep 17, 2010

I do not know how to program this in html code?

this is the problem?

input 20 number and print the average of the number....?

View 1 Replies View Related

Alternative For Document.write - Calculator That Takes Number Of Songs From Input Text Box

Jan 16, 2011

I have a simple calculator here that takes the number of songs from the input text box and multiplies it by 500 and then tells you the total. I am doing this on a simple web page for a project for college. I know document.write overwrites my entire page to print the result but I would like to keep the page and design that I have made and to print the result on the same paragraph as where the script and text box are.

Below is my javascript:

Code:

View 3 Replies View Related

Calculating Sum And Average Of Integers And Display Value

May 25, 2009

I'm a newbie to javascript and I made this script
<script>
var num = parseInt(prompt("Enter the number of integers to follow"));
var sum = 0;
for (i = 0; i < num; i++){
sum += parseInt(prompt("Enter a number"));
}

if (isNaN(num)) {
alert("Invalid");
} else {
if (sum < 0) {
document.writeln("The sum is 0 and the average is 0");
} else {
document.writeln("The sum is " + sum + " and the average is " + sum/num);
}
}
</script>

The scenario : Create in javascript that will read a series of integers at the terminal. The first integer is special, as it indicates how many more integers will follow. Your javascript is to calculate the sum and average of the integers, excluding the first integer, and display these values to the screen. If the total is not greater than 0 then display "The sum is 0 and the average is 0". Did I write the script correctly? am I missing anything that a dumb person might do? for example the person might type in letters instead of numbers.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved