Welcome to Dream.In.Code
Click Here
Getting Help is Easy!

Join 118,312 Programmers for FREE! Ask your question and get quick answers from experts. There are 1,696 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



Addition

 
Reply to this topicStart new topic

Addition

velaphi
post 22 Jul, 2008 - 01:15 PM
Post #1


New D.I.C Head

*
Joined: 20 Jul, 2008
Posts: 8

Hi, i want to add the sum of this:-
CODE

<script LANGUAGE="JAVASCRIPT">
<!--Hide from old browsers
function YourCost1(){

var firstnumber = prompt("Enter first number and Click OK")
var secondnumber = prompt("Enter second number and Click Ok")
var thirdnumber = prompt("Enter third number and Click Ok")
var  total =( firstnumber + secondnumber + thirdnumber)
alert("The Sum is: " + total )
User is offlineProfile CardPM

Go to the top of the page


BetaWar
post 22 Jul, 2008 - 03:57 PM
Post #2


#include <soul.h>

Group Icon
Joined: 7 Sep, 2006
Posts: 1,635



Thanked 63 times

Dream Kudos: 1075
My Contributions


You just have to make sure that the content is classified as a number:

CODE
var firstnumber = prompt("Enter first number and Click OK", "0");
var secondnumber = prompt("Enter second number and Click Ok", "1");
var thirdnumber = prompt("Enter third number and Click Ok", "2");
var  total = Math.floor(firstnumber)+ Math.floor(secondnumber)+ Math.floor(thirdnumber);
alert("The Sum is: " + total );


That makes it so when the numbers are being added together they are taken as the lowest whole number. It will just die if there is text in it...

Hope that helps.
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 10/10/08 12:11PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month