Program - User Must Enter Number Of Books And Price And Then Calculate The Total Cost Of Items

May 4, 2011

I have a program in which a user must enter number of books and price and then calculate the total cost of the items, i have tried and tried to get it working to no effect can anyone see where i have went wrong.

View 2 Replies


ADVERTISEMENT

Code For Window.confirm() Function - Find The Number Of Days - Calculate And Display The Total Cost?

Dec 6, 2010

I am having some difficulty in constructing a window.confirm() function that works with my code.So if the form data is valid, I need to use a window.confirm() dialog box to show the user's total cost based on the rental rate of equipment chosen and the reservation period. The user must accept the cost by pressing the confirm button, and if user cancels do not submit data.I have written this code but cannot figure out how to find the number of days from the 2 date fields and use that to calculate and display the total cost.

//confirm submit and display rental cost
var equip = document.forms[0].equipment.value
var pDate = document.forms[0].pickupDate.value[code].....

View 5 Replies View Related

Calculate Total Cost On Booking Form?

Oct 17, 2011

how to achieve client-side calculation on my company booking form, using Javascript.The total amount for accommodation is calculated based on the room type (single or twin), zone chosen and meal plan (which then assigns a certain rate per week,so for example Single room, Zone 2, Self Catering would be �165 per week). There is a table of rates here : http:[utl].....The code would then use the arrival and departure date to calculate the number of weeks, add a booking fee of �50 and output the total amount.The form is located here: http:[url]....

View 1 Replies View Related

Program To Calculate Price With Sales Tax?

Oct 8, 2011

When I compile this I get no errors, however when I try to run it, it does not work. What should happen, is an output dialog box should appear saying the total for tickets, total tax, and total for tickets with tax. This is not what happens. This is what I have written: This program will ask for the number of tickets you wish purchase. It will then calculate the total price of the tickets and the 9.5% sales tax.

import javax.swing.JOptionPane;
public class TicketCost {
Constants
static final double TICKET_PRICE = 10.00;
static final double TAX = .095;
public static void main (String [] args) {
Local variables
int Nbr_Tickets = 0;
double Tax = 0;
double Total = 0;
String InputStr;
String outputMsg;
InputStr = JOptionPane.showInputDialog
("Enter the number of tickets to purchase");
Nbr_Tickets = Integer.parseInt(InputStr);

Calculation
Nbr_Tickets = (int)(Nbr_Tickets * TICKET_PRICE);
Tax = Nbr_Tickets * TAX;
Total = Nbr_Tickets + Tax;

Created message
outputMsg = "cost of tickets: $"
+ String.format("%.2f", Nbr_Tickets)
+ "Taxes: $"
+ String.format("%.2f", Tax)
+ "Total cost of tickets to A Beautiful Mind: $"
+ String.format("%.2f", Total);
output message
JOptionPane.showMessageDialog(null,outputMsg,"Total cost of tickets to A beautiful Mind",JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
}}

And when I run it this is what I get:
----jGRASP exec: java TicketCost
Exception in thread "main" java.util.IllegalFormatConversionException: f != java.lang.Integer
at java.util.Formatter$FormatSpecifier.failConversion(Formatter.java:4045)
at java.util.Formatter$FormatSpecifier.printFloat(Formatter.java:2761)
at java.util.Formatter$FormatSpecifier.print(Formatter.java:2708)
at java.util.Formatter.format(Formatter.java:2488)
at java.util.Formatter.format(Formatter.java:2423)
at java.lang.String.format(String.java:2845)
at TicketCost.main(TicketCost.java:35)
----jGRASP wedge2: exit code for process is 1.
----jGRASP: operation complete.

View 1 Replies View Related

Calculate Total Price In Added Tablerow

Sep 12, 2010


i have a table inside a form, with input fields ( price, qty, desc, total ( to be updated ), this works as it should with the following javascript:

<script type="text/javascript"><!--
function updatesum() {
document.forms['hours'].elements['onktotal[]'].value = (document.forms['hours'].elements['onkqty[]'].value.replace(",", ".") -0) * (document.forms['hours'].elements['onkprice[]'].value.replace(",", ".") -0);
}
//-->
</script>

now the problem occurs when i put more rows there then the javascript function does not work anymore, my ultimate goal is to create a function to add tablerows with javascript, but i'm trying to create the update function with a static situation first.

View 2 Replies View Related

Calculate 2 Form Values With Price And Sums With Total

Sep 20, 2009

Formfield.anzahl1 = number entered by customer
Formfield.Price1 = Ergebnisfeld1
e.g.
Anzahl1= 1
Price = 270
*if Anzahl1 = 2 then Price = 270*2

I need to do this for two form option. 2nd field would be as follows

Formfield.Anzahl2= number entered by customer
Formfield.Price2 = Ergebnisfeld2
Then Formfield.Total = Ergebnisfeld1 + Ergebnisfeld2

How can I convert these above to javascript?

View 1 Replies View Related

When The User Enter A Quanity It Will Show The Total Straight Away Without Having To Click The Total Box?

Jan 27, 2011

I am trying to add up some fields, it works but to get the total you have to click on the total box. Is there any way of getting it to total automatically i.e. when the user enter a quanity it will show the total straight away without having to click the total box.

Below is my code
<html><head><title>Online Order</title></head>
<body bgcolor=white onLoad="document.arith.total.value=eval(0);

[code]....

View 1 Replies View Related

If A Person Selects A Friday Class But Not A Saturday Class The Total Cost Field Will Automatically Enter $99?

Sep 27, 2011

CONDITIONS:If a person selects a Friday Class but not a Saturday Class the Total Cost Field will automatically enter $99.If a person selects a Saturday Class but not a Friday Class the Total Cost Field will automatically enter $99 as well.If a person selects both a Friday & Saturday Class the Total Cost field will automatically be $159.I found the following code and so far only have it changing when a Friday class is entered. I have no idea where to go from here

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

[code].....

View 10 Replies View Related

Get The Total Of The Checkboxes Selected When The User Clicks The "calculate Total" Button?

Jul 18, 2011

I am trying to get the total of the checkboxes selected when the user clicks the "calculate total" button. It isn't working though.

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

[code]....

View 6 Replies View Related

Calculate The Cost Deduct Saving And Plus Cost ?

Jan 27, 2011

I have write my code for calculate, discount, total plus other cost but it didnt work for me. I have stuck here for a week, I have done everything to make it right but it seems that doesnt listen to me, so correct my code.

First option; I have 4 choices of tours; people can choose 1 in 4.

Second options; I have 4 different choices of payments; people can choose 1 in 4 Need to alert them if they didnt choose each of the option.

Total cost of choice for tour deduct each option of payment for discount

Example;

<script type="text/javascript" language="javascript">

View 9 Replies View Related

SIMPLE PROGRAM: User Enters Number, Gets Personal Message

Jul 23, 2005

I am trying to put up a page for my students for them to be able to enter
their class number into a field and instantly get a personalized text
message. (ie student number 5 enters "5" and gets a message like
"Congratulations on your homerun in Kickball Bobby!"

View 5 Replies View Related

Create A Script That Allows User To Enter A Number?

Sep 29, 2009

I need to create a script that allows a user to enter a number, in either celsius or fahrenheit textbox....then they can click the button and the conversion is placed in the blank textbox

C = (F 32) * 5 / 9
F = C * 9 / 5 + 32

<table border="1">
<tr>
<th>Fahrenheit</th>
<th></th>

[Code]....

View 1 Replies View Related

How To Add Up Two Values For Total Cost

Aug 25, 2010

I am making a mock website where the user make their own computer by selecting items from drop down menus. Then a value of the item comes up below. this works but i am having trouble adding the numbers up for the total cost.

Here is my code:
<html><head><title>build</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
</style></head>
<body>
<script type="text/javascript"> .....

View 1 Replies View Related

Auto Calculate The Subtraction Of Total Earn And Total Deduction?

Oct 18, 2011

I have Javascript code for auto calculate.here is the code:

<script type="text/javascript" language="javascript">
function autocalearn(oText)
{[code].....

I have a textbox for the overall total, and i want it automatic subtract the total earn and total deduction..

View 23 Replies View Related

Calculate, Discount Plus Other Cost?

Jan 26, 2011

I have tried to work on this code for the last 2 weeks, can not figure out what is wrong with my code,please have a look for me, it will greatly appreciated from me; here my details;I work on <script type="text/javascript" language="javascript"> from dreamweaver:)to set my code to calculate, different Fiji tour (4 options, choose 1 in options)Payment (4 options, choose 1 in options)The cost of tour - discount base on tour cost. (discount has 4 different calculate)Need to be alert if they not choose 1 in each type.Second cost if they choose to fly out , will cost plus $400 on top the above cost. This is an optional, so they don;t need to buy if they want.I have attached my code, please have a look,

View 19 Replies View Related

Calculate Cost Not Working?

Apr 28, 2011

I am having troubles with calculating costs on a form. When I press the cost button, it doesn't generate the calculations.

var fday = document.getElementById("reg_start_date").value;
var lday = document.getElementById("reg_end_date").value;
if (fday == "2011-09-05" && lday == "2011-09-06")

[code]....

View 1 Replies View Related

Make A Calculator To Calculate Wallpaper Sizes And Cost

Apr 16, 2011

Have to make a calculator to calculate wallpaper sizes and cost (college course so not for the 'real world' so doesnt need a great deal of functionality. Do i make a form in html and then name each cell? what then? Lost as hell here and been watching countless tutorials for js, need guidance i think now.

View 18 Replies View Related

Get The Total Price Of A Dropdown Value To Change?

Mar 26, 2011

I'm having a small javascript problem.This is my code:

<form action="#" method="post" id="myForm">
<div class="additional">
<label>Additional copies</label><br clear="all" />[code]........

I'm trying to get the total price of a dropdown value to change.eg. When Option 5 is selected the total at the bottom should display �12.00.I've already managed to get this code working with radio buttons but can't seem to get it to work with dropdown menus.

View 6 Replies View Related

Calculating Form - Calculate The Square Footage And Cost Of A Vinyl Banner?

Jul 24, 2010

I'm trying to create a four-box form in which the user enters information into the first two boxes,and the program fills the second two boxes in.Basically,I need a form to calculate the square footage and cost of a vinyl banner.In the first text box the user would enter the banner's height.In the second box the user would enter the banner's width.

The third box would multiply the height by the width and display the total square footage of the banner.So far, I have this part down. The following is what I need help with: the fourth box.The fourth box needs to display the cost of the banner. I have a complicated pricing structure. For example:

If the total square feet for the banner is under 12 square feet, the cost is $60.00. If the square feet for the banner is between 13 and 25 square feet. The cost is $4.80/square foot and ect...I believe this would be done using some variation of an IF statement but I can't get it to work.Using this example, what would I add to the form to get this work? The following is the form I have so far which just consists of the calculation of the square feet which is all I've been able to get working.

Code:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>[code].....

View 3 Replies View Related

Row Number, Total And Grand Total Not Updating In Dynamic Table?

Sep 12, 2011

I am making making class project and faced with some problems. I have found script (here) and learned.

1. not updating row number and row ID after deleting rows

2. not updating total sum if user change quantity

3. not updating grand total after deleting and changing quantity

<html>
<head>
<script type="text/javascript">[code].....

View 2 Replies View Related

Total Price To Be In DIV And Not Input Type Text

Dec 5, 2010

Firstly, I got this script which gets values and automatically calculates it and shows result.
Script:
<script type="text/javascript">
function calculate(f){
var prod=Number(f['users'].value);
var quan=Number(f['months'].value);
var tot=prod*quan;
f['total'].value=tot==0?'':tot.toFixed(2);
}
</script>
<ul><li class="bold">Users</li>
<li>
<select name="users" onchange="calculate(this.form)" id="users">
<option value='1'>1</option>
<option value='2'>2</option>
</select>
</li></ul>
<ul><li class="bold">Period</li><li>
<select name="months" onchange="calculate(this.form)" id="months">
<option value=''>Select Months</option>
<option value='1'>1 Month</option>
<option value='2'>2 Months</option>
</select></li></ul>
Total: <input type="text" name="total" readonly="readonly">

What I'm trying to make is, the total, to be in a div and not input type text
Something like <div id="total"></div>
I don't like because it shows in form, I want it directly. One more thing, is possible to make the default price 0.00 ? and when selecting automatically changes to price..

View 2 Replies View Related

Jquery :: Show In Real Time The Total Price?

Nov 20, 2010

What I'm trying to do is, a jquery script to show in real time the total price. I got this:
<li>Users</li>
<li>
<select name="users" id="users">
<option value='1'>1</option>
<option value='2'>2</option>
<option value='3'>3</option>
<option value='4'>4</option>
<option value='5'>5</option>
<option value='6'>6</option>
<option value='7'>7</option>
<option value='8'>8</option>
<option value='9'>9</option>
<option value='10'>10</option>
</select>
</li>

<li>Months</li><li>
<select name="months" id="months">
<option value='1'>1 Month</option>
<option value='2'>2 Months</option>
<option value='3'>3 Months</option>
<option value='4'>4 Months</option>
<option value='5'>5 Months</option>
<option value='6'>6 Months</option>
<option value='7'>7 Months</option>
<option value='8'>8 Months </option>
<option value='9'>9 Months</option>
<option value='10'>10 Months</option>
<option value="11">11 Months</option>
<option value="12">12 Months</option>
</select></li>

<div class="grand_total">
<h4 class="colr">Price</h4>
<ul>
<li class="price">$0.50</li>
</ul></div>

1 Month and 1 User price should be 0.50 USD
+1 Month = + 0.50 USD
+ 1 User = + 0.50 USD
Example: 5 Users + 2 Months = 3.50 USD
I wanna make the jquery to show the total price at li class="price".

View 3 Replies View Related

Update 'total' Field With Multiple Price Fields?

Nov 11, 2010

i am currently developing a cart for a website at my company.What i am attempting to do is update the grand total field dynamically as the product total (determined by quantity & price) are being populated.Each product in the cart is being generated by a foreach (php) reading from a mysql database.As the total values are not being prepopulated im not exactly sure what the logic would be to get the desired values.

I will also mention im relatively new to the whole web development area, i started begining of this year and feel i could still learn alot about the 'logic' of a computer.If anything is unclear about what i stated above feel free to request additional information.

View 2 Replies View Related

Combining Two Or More Text Drop Down Boxes To Calculate A Price?

Dec 13, 2011

I'm creating an online enrolment form for my company, who are a training company. Users enrolling on the course must make three choices - The level of course, the size of course and whether they wish to attend a workshop or study by distance learning. The combination of these three factors will determine the price. I'd like to have the price automatically calculated using javascript and displayed on the form before they submit. Can anyone give me an idea of how to do this?There are three drop down boxes for users to select their course. They are: -

Level of Qualification:
Level 3
Level 4

[code]....

View 2 Replies View Related

Calculating Total Price Based On Extra Data In Form Field?

Nov 2, 2009

I need the value of my drop down box options to contain size information rather than price. However I would like to be able to calculate a price for the items based on what size the user selects as well as the quantity. Below is the code I came up with (which doesn't work obviously)What can I do to get this to work for me?

<head>
<script type="text/javascript">
<!--

[code]....

View 3 Replies View Related

Create A Virtual Library - Make A Random Number Of Books Pop Out On Mouse Over?

Jun 7, 2011

I have a background that is a shelf full of books, I wanted to figure out what I would need to do in order to make a random number of books pop out on mouse over (individually), and upon click have the book pulled out and be flipped through and read like a book. Would I have to recreate the library picture completely to make the random books moveable? And would I have to create the books that I want to move from the bookshelf?

how to pull the book out from the book shelf so that it looks like it's coming towards me and then to make it look like it has been pulled out. Would I need to use animation for this? What would be the parts to the animation required?

A little background on my knowledge of javascript: I understand the concepts of it and can understand it when I read it or its explained to me. I am looking to create something as simple as I can, I thought having a background and something basic like a few books be able to pop out. When I realized css couldn't do this and css3 wasn't supported by most browsers I turned to javascript and have been trying to figure out the steps I would need to do to do this specifically.

View 2 Replies View Related







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