473,666 Members | 2,546 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how find no of 100 ,50,20,10,5,2,1 in a given number



hi

i have one problem suppose if we given a number 163 as
input the out put of the number is
one --100
one--- 50
one---10
one-- 2
one--1

plese help me urgent
regards
stalin



Jan 29 '08 #1
1 1179
On Jan 29, 3:28*pm, stalin <stalin1...@gma il.comwrote:
*hi

* * * * * * *i have one problem suppose if we given a number163 as
input the out put of the number is
* * * * * * * * * * * * * *one --100
* * * * * * * * * * * * * one--- 50
* * * * * * * * * * * * * *one---10
* * * * * * * * * * * * * * * one-- 2
* * * * * * * * * * * * * * * * * one--1
Try something like:

var computeUnits = (function(){

var units = [1, 2, 5, 10, 20, 50, 100];

return {
doBreakdown: function(amt) {
var breakDown = {},
i = units.length,
unit;
while (i--) {
unit = units[i];
breakDown[unit] = (amt/unit)|0;
amt = amt % unit;
}
return breakDown;
},

// Shows how many of each unit
showBreakdown: function(amt) {
var o = this.doBreakdow n(amt);
var t = [];
for (var p in o){
t.push(p+': '+o[p]);
}
alert(t.join('\ n'));
},

// Shows how many of each unit 0
showBreakdownMi n: function(amt) {
var o = this.doBreakdow n(amt);
var t = [];
for (var p in o){
if (o[p] 0) {
t.push(p+': '+o[p]);
}
}
alert(t.join('\ n'));
}
};
})();

computeUnits.sh owBreakdown(163 );
computeUnits.sh owBreakdownMin( 163);

--
Rob
Jan 29 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
459
by: Sriram Krishnan [at] gmx [dot] net | last post by:
Given an arbitrary number series, how do I identify the series and find the Nth number... for e.g 1,3,5,7 is an AP and the next number will be 9 1,8,27,64 is the series of cubes and the next will be 125 1,1,2,3,5,8 is the Fibonacci series The thing is I'll be given the series only...I have to identify the series and find the next number. Pointers on how to do this please ... Regards, Sriram
1
1854
by: Sriram Krishnan [at] gmx [dot] net | last post by:
Given an arbitrary number series, how do I identify the series and find the Nth number... for e.g 1,3,5,7 is an AP and the next number will be 9 1,8,27,64 is the series of cubes and the next will be 125 1,1,2,3,5,8 is the Fibonacci series The thing is I'll be given the series only...I have to identify the series and find the next number. Pointers on how to do this please ... Regards, Sriram
2
4095
by: Sriram Krishnan [at] gmx [dot] net | last post by:
Given an arbitrary number series, how do I identify the series and find the Nth number... for e.g 1,3,5,7 is an AP and the next number will be 9 1,8,27,64 is the series of cubes and the next will be 125 1,1,2,3,5,8 is the Fibonacci series The thing is I'll be given the series only...I have to identify the series and find the next number. Pointers on how to do this please ... Regards, Sriram
0
292
by: Sriram Krishnan [at] gmx [dot] net | last post by:
Given an arbitrary number series, how do I identify the series and find the Nth number... for e.g 1,3,5,7 is an AP and the next number will be 9 1,8,27,64 is the series of cubes and the next will be 125 1,1,2,3,5,8 is the Fibonacci series The thing is I'll be given the series only...I have to identify the series and find the next number. Pointers on how to do this please ... Regards, Sriram
16
4454
by: Petrakid | last post by:
Hey, I have a task to complete. I am trying to figure out the best way, in C++ to determine the following. There is this farm with pigs and chickens. Only the legs of the pigs and chickens look exactly the same, so for a short person to determine how many possible pigs and how many possible chickens, all they can do is count the total legs of the two. - Chickens seem to always run around in groups of 3 - Pigs seem to always clump...
0
8454
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8883
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8787
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8645
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7389
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4200
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2013
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1778
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.