Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write the program numbers into words.For example
2345==two thousand three hundred fourty five

Answers were Sorted based on User's Feedback



Write the program numbers into words.For example 2345==two thousand three hundred fourty five..

Answer / sudarshan

word is:=one
word is:=two
word is:=three
word is:=four

Is This Answer Correct ?    3 Yes 3 No

Write the program numbers into words.For example 2345==two thousand three hundred fourty five..

Answer / rajesh babu

public class NumberToWords{
static final String[] Number1 = {""," Hundrad"};
static final String[] Number2 = {"","One","Two",
"Three","Four","Five",
" Six"," Seven", "Eight"," Nine","Ten" };
String number(int number){
String str;
if (number % 100 < 10){
str = Number2[number % 100];
number /= 100;
}
else {
str= Number2[number % 5];
number /= 5;
}
if (number == 0) return str;
return Number2[number] + "hundred" + str;
}
public String convert(int number) {
if (number == 0){
return "zero";
}
String pre = "";
String str1 = "";
int i = 0;
do {
int n = number % 100;
if (n != 0){
String s = number(n);
str1 = s + Number1[i] + str1;
}
i++;
number /= 100;
}
while (number > 0);
return (pre + str1).trim();
}
public static void main(String[] args) {
NumberToWords num = new NumberToWords();
System.out.println("words is :=" + num.convert(1));
System.out.println("words is :=" + num.convert(2));
System.out.println("words is :=" + num.convert(3));
System.out.println("words is :=" + num.convert(4));
}
}

Is This Answer Correct ?    4 Yes 13 No

Post New Answer

More Core Java Interview Questions

What are register variables what are the advantages?

0 Answers  


What will happen if there is a default method conflict as mentioned above and we have specified the same signature method in the base class instead of overriding in the existing class ?

0 Answers  


how we can write the string concatenation program in java.

3 Answers  


Diff between C++ and java?

9 Answers   TCS,


What are advantages of exception handling in java?

0 Answers  


what is the use of finalize()Method please explain with an example

3 Answers  


what is object type casting? give some example with related?

2 Answers   HP, SparkTG,


How many boolean functions are there?

0 Answers  


what is the use of thread?Justify it by project point of view

7 Answers  


What is difference between class and object in java?

0 Answers  


Can there be an abstract method without an abstract class?

0 Answers  


When the constructor of a class is invoked?

0 Answers  


Categories