JavaScript

Moderators: None (Apply to moderate this forum)
Number of threads: 2061
Number of posts: 5164

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Re: Trying to make Javascript to make change(money) Posted by mburton06 on 11 May 2012 at 3:02 PM
function addFields(form) {

var strCents = prompt("Please enter the number of cents", "Type number here");
var cents = parseInt(strCents);
var quarters = Math.floor(cents / 25);
var dimes = Math.floor((cents % 25) / 10);
var nickels = Math.floor(((cents % 25) % 10) / 5);
var pennies = cents % 5;
alert(cents + " cents is comprised of:\n" + quarters + " quarter(s)\n" + dimes + " dime(s)\n" + nickels + " nickel(s)\n" + pennies + " pennies\n");

}

Here's what I have, model dollars on pennies, dimes
Thread Tree



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.