Home Tutorialhelp Comment More Enhacement To The Solution..

 
 

Comment

Raj
More Enhacement To The Solution..,
September 25, 2008 at 1:03 AM

import java.util.HashMap;

public class NumberToWords{
static final String[] Number1 = {""," Hundred"};
static final String[] Number2 = {"","One","Two", "Three","Four","Five", " Six"," Seven", "Eight"," Nine","Ten" };

static HashMap<Integer,String> numHash = new HashMap<Integer,String> ();

String number(int number){
String str;
if (number % 100 < 10){
str = Number2[number % 100];
number /= 100;
}
else{

if( (number % 10) == 0){
return Number2[number / 10] + " zero";
}
else{
str = Number2[number % 10];
number /= 10;
if (number == 0) return str ;
return Number2[number] + " " + str;
}
}
if (number == 0) return str;
return Number2[number] + "hundred" + str;
}

private void setHash(){
numHash.put(11, "Eleven");
numHash.put(12, "Twelve");
numHash.put(13, "Thirteen");
numHash.put(14, "Fourteen");
numHash.put(15, "Fifteen");
numHash.put(16, "Sixteen");
numHash.put(17, "Seventeen");
numHash.put(18, "Eighteen");
numHash.put(19, "Nineteen");
}
private String convert(int number) {

if(number < 0 || number > 999)
return "Invalid Number - Should be (0-999)";

if (number == 0){
return "zero";
}
String pre = "";
String str1 = "";
int i = 0;
if( (number > 10 && number < 19)){
return numHash.get(number);
}else{
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();
num.setHash();
System.out.println("words is :=" + num.convert(10));
System.out.println("words is :=" + num.convert(200));
System.out.println("words is :=" + num.convert(999));
System.out.println("words is :=" + num.convert(20));
System.out.println("words is :=" + num.convert(179));
System.out.println("words is :=" + num.convert(44));
System.out.println("words is :=" + num.convert(-12));
System.out.println("words is :=" + num.convert(9221));
}
}
View All Comments | View Tutorial
Related Tutorial and Articles
Java Tips and Examples

Convert Number To Words
Convert Number To Words       In this example, We are going to convert number to words. Code...;   }   public String convert(int number 

Programming Tutorials

Java Convert Number to Words
Java Convert Number to Words In this section, you will learn how to convert... to the usage. Through the given code, you can convert the large digit numbers into words...", "ninty" }; public String convert(int number) { int n = 1; int word 

Java Code Examples

Java Convert date to words
Java Convert date to words In this tutorial, you will learn how to convert date into words. Just like a number, you can also convert a date into words. Here we are going to convert the current date into words. For this, we have created 

Java Interview Questions

Java program - convert words into numbers?
Java program - convert words into numbers?   convert words into numbers?   had no answer sir 

General

Java Conversion
to convert number to words.    Degree Converter...Java Conversion      ... will learn to convert decimal number into binary. The java.lang package provides 

Java Beginners

java program to convert decimal in words
java program to convert decimal in words  write a java program to convert a decimal no. in words.Ex: give input as 12 output must be twelve 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 9.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook..., more general conversion formulas can be given in the case where x extends from 

Java Beginners

Number Convert - Java Beginners
Number Convert  Dear Deepak Sir, I am entered in Command prompt Some value like 234.Value can be convert into Two Hundred and Thirty Four Rupees... passString(int number){ int num, q ; if (number < 10 ){ displayOutput(a[number 

Java Beginners

java conversion
java conversion  how do i convert String date="Aug 31, 2012 19:23:17.907339000 IST" to long value 

Java-Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 9.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... of raising a number to a power. It can use mathematical functions such as sin, cos 

Programming Tutorials

Java Programming: Solution to Programming Exercise
POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... to the output file. The first list contains the words in alphabetical order. The number... in the file, along with the number of times that each word occurs. The words 

Java Technology Tutorials

Java count words from file
Java count words from file In this section, you will learn how to determine the number of words present in the file. Explanation: Java has provides several... by using the StringTokenizer class, we can easily count the number of words 

Java-Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 9.3 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook...) + (100 - 10) + 5, which is 1995. In standard Roman numerals, no more than thee 

Java Beginners

form to java script conversion
form to java script conversion  I am using a form one more form cotain a piece of code . how to convert it to java script to function it properly? code is shown below <form action="http://www.google.com" id="cse-search 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 4.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... the dice repeatedly, trying to get a given total, the number of rolls it takes can 

Programming Tutorials

Java Programming: Solution to Programming Exercise
POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... of words in the user's input, and the number of characters in the user's input... to count the number of characters that are first characters in words. Don't forget 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 12.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook..., and for each word it gives the line number of every line in the document where the word 

Java Interview Questions

java program to insert data into a file and count the number of words from the file???????
java program to insert data into a file and count the number of words from the file???????  java program to insert data into a file and count the number of words from the file 

JavaScript Questions

Number conversion in JavaScript
Number conversion in JavaScript  How do you convert numbers between different bases in JavaScript 

General

Java Conversion
 

General

Java: Example - Words to array
Java: Example - Words to array This example shows how to convert words to an array. We will use StringTokenizer to achieve the this.   Some times is is required to words into an array, to solve this you can use 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 8.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... its size. See the source code for more information. For this exercise, you 

SQL Question

CONVERT VALUE MONEY TO WORDS IN SQL?
CONVERT VALUE MONEY TO WORDS IN SQL?  i want to covert money or varchar value (like 7500000 ) in words like (75 lacs) then how to convert this value in this words . please give me solution 

Java Beginners

Java Conversion Question - Java Beginners
Java Conversion Question   Hello sir ,How i can Convert Java Code to Vb.net ,Plz Help Me 

Java Beginners

String to Date Conversion - Java Beginners
)); For read more information : http://www.roseindia.net/java/java-conversion... 11-09-2008 07:32:AM Now I just need to convert this String variable value...  Hi friend, For conversion in this format : 11/SEP/2008 07:07:32 

Programming Tutorials

Java Programming: Solution to Programming Exercise
POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... of the JTextField might not be a legal number. The bet that the user places might be more... be an integral number of dollars. You can convert the user's input 

Java Beginners

HSSFCell to String type conversion
HSSFCell to String type conversion  Hello, Can anyone help me convert HSSFCell type to string. There is a solution in the following URL...://www.roseindia.net/tutorial/java/poi/readExcelFile.html 

Java Beginners

html2xml conversion
html2xml conversion  java code to convert html file to xml 

Java Beginners

Language Conversion
Language Conversion  write a java program to convert "Hello World" in spanish 

Applet Questions

conversion Applet
conversion Applet  I am a java beginner.................. strong texthow to create JApplet that prompts the user to enter a distance in miles... kilometers,where XX.XX is the number of kilometers. A mile is 1.6 kilometers 

General

Convert Byte to Hexadecimal
for this conversion. Code Description: This program takes a byte number from console.... C:\corejava>java ByteToHexa Enter the byte number... Convert Byte to Hexadecimal      

General

Convert Number to Roman Number Using Java
Java Convert Number to Roman Numerals In this section, you will learn how to convert the number to roman number.  To do this, we have created a class... and the method convertIntegerToRoman(int n) convert the specified number into roman 

Java Beginners

Map words to line number in text file and show occurence
Map words to line number in text file and show occurence  hi i want to Map words to line number in text file and show occurrence of word in java coding 

Java Beginners

Type Conversion - Java Beginners
Type Conversion   Hai, rajanikanth, Please explain how to convert from integer value to a string value .In a database operation i want to convert... for conversion 

Java Tips and Examples

Exercise - Count Words
Java: Exercise - Count Words Problem Write a method which counts the number of words in a string. Assume that a word is defined as a sequence of letters.... countWords("Hello world")2Two words. countWords("Hello, world.")2Still two words 

Java Beginners

Conversion from color to Gray Image - Java Beginners
Conversion from color to Gray Image  Hi... Sakthi here.. i am new to java. and i haven't try this so far How to convert the color image to gray scale image in java? could u plz help me out to start the process 

Java Beginners

Java To Vb.Net Conversion - Java Beginners
Java To Vb.Net Conversion  How to convert Java Code To VB.net,which Software is useful to convert java to vb.net,plz Help Me 

Java Tips and Examples

Convert Number to Binary
Convert Number to Binary       In this section, you will learn to convert a number to a binary (0,1). The given number is a decimal format and the following program to calculate its 

Java Beginners

Distance conversion - Java Beginners
in metres. The program will then present a user menu of conversion types, converting... the user. ? Write three methods to convert the distance to kilometres, feet and inches...{ System.out.println(); System.out.println("1. Convert to kilometers 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 2.3 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... the user by name. Before outputting the user's name, convert it to upper case 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 11.2 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... Section 10.3, that stores words in a binary sort tree instead of in an array 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 4.2 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook.... It's easy to write the switch statement, although it's tedious because of the number 

General

Convert String to Number
Convert String to Number       In this section, we will learn how to convert String to Number. The following program provides you the functionality to convert String 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 3.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... there are more words in the string, get the next word and print it." This turns 

Programming Tutorials

Java Programming: Solution to Programming Exercise
POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... { /* This program will convert a given number of eggs... { /* This program will convert a given number of eggs 

Java Beginners

Excel conversion tool. - Java Beginners
Excel conversion tool.  Hi, I need a conversion tool which can convert .xls(Excel 2003) to .xlsx (Excel 2007) and vice-versa. Please suggest any links ro tools. Thank You 

General

Count numbers of spaces and number of words from the input string
Count numbers of spaces and number of words from the input string Java In this section, you will learn how to count the number of spaces and words from... the number of spaces. Now, in order to count the number of words, we have splitted 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 2.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... the answer as a real number, giving 3.97. The Solution public class 

Java Beginners

convert to java plss - Java Beginners
convert to java plss  hi i am using microsoft VB6.0 and my friend ask me to make java program to convert number to words but i only use visual basic because i dont know much in java plss convert it to me this is my code 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 3.2 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook. Exercise 3.2: Which integer between 1 and 10000 has the largest number 

Java Tips and Examples

Programming: Count Words - Dialog
Java NotesProgramming: Count Words - Dialog Description Write a program which counts the number of words in text the user enters. Assume that a word... words, and so is "test this". Only count blanks if the last 

Development process Questions

Conversion - Development process
Conversion Assistant (JLCA). Code that calls Java APIs can convert to comparable C# code...Conversion  Why is there a need to convert from Java to .NET? What is the theory of conversion from java to .NET? How it is done?   Hi 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 4.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... for the number of rows, number of columns, and square size.) Set the number 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 3.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... square is red or black: If the row number and the column number are either both 

Java Beginners

ascii to thai language conversion - Java Beginners
ascii to thai language conversion  I have a string in ascii format like \u0042\u00072 ..., It was converted from thai language. How can i convert it to thai language. I would be more thankful if I get some example or some 

Java Tips and Examples

Programming: Count Words - Dialog
Java NotesProgramming: Count Words - Dialog Description Write a program which counts the number of words in text the user enters. Assume that a word... error-prone1 Hints Blank counter. The number of words it the number 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 6.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... See the solution to Exercise 3.5 for a discussion of how to draw 

Java Interview Questions

Please find me a solution that
Please find me a solution that   Write a java program...: System.out.printf("The Area of %s is %s" ,str,result); str = any of these words: Square...' to keep the user running your program until he enters number '5' to exit 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 12.2 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... the solution, below. An algorithm for the calc() method is even more 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 3.6 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook..., so you can draw more than 8 squares in a row. You can use negative values 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 4.6 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... easily into Java code. One more note: In my implementation of the subroutine 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 11.7 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... for the derivative can be much more complicated than it needs to be. For example 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 6.6 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... SubKillerGame.java. Modify the game so it keeps track of the number of hits and misses 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 10.3 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... be able to look up a name in the directory to find the associated phone number 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 6.3 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... Java. (Note: Since there was only one button in this applet, I added 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 8.1 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... into Java as follows: int[] numFound; // numFound[i] will be the number 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 12.3 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook. Exercise 12.3: The fact that Java has a HashMap class means that no Java 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 6.1 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... a clicking sound when the dice are rolled. See the solution to see how 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 12.4 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook.... Some languages use predicates in generic programming. Java doesn't 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 6.2 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook....) In the following solution, modifications to the solution for Exercise 6.1 are shown in red 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 8.3 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... that specifies the number of vertices of the polygon. Its value should be 3 or greater 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 11.6 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... made up of numbers and operators. We can make things a little more interesting 

Programming Tutorials

Java Programming, Solution to Programming Exercise
Solution for Programming Exercise 11.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... that consists of nothing but a leaf. In that case, the number of leaves is 1 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 5.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... that a number could be used, including in an output statement or in the condition 

Programming Tutorials

Java Programming: Solution to Programming Exercise
Solution for Programming Exercise 8.5 THIS PAGE DISCUSSES ONE POSSIBLE SOLUTION to the following exercise from this on-line Java textbook... to count how many pieces that player has in a row in that direction. If the number 

Java Beginners

putting words to line number form a java file/test file and show occurrence
putting words to line number form a java file/test file and show occurrence  hi all i want putting words to line number form a java file and show... and BinarySearchTree and please help me in java coding 

Java Beginners

PDF to Word Conversion - Java Beginners
PDF to Word Conversion  Hello, Can we convert a PDF document to Microsoft word document thru Java. If its not possible in Java, is it possible in any other language 

Date Calendar

Java Date conversion - Date Calendar
Java Date conversion  How do I convert 'Mon Mar 28 00:00:00 IST 1983' which is a java.util.Date or String to yyyy/MM/dd date format in sql 

General

Java Date Conversion
Java Date Conversion In java date conversion, two packages are used... Java Converts String into Date In this example we are going to convert...; used to convert between dates and time fields and the DateFormat class 

Java Interview Questions

Conversion In Collections - Java Interview Questions
Conversion In Collections  Hi Friends, can u give code to convert... Friend, 1)Convert ArrayList To HashMap: import java.io.*; import java.util....)Convert HashMap To ArrayList: import java.util.*; public class 

Java Beginners

from number to word
from number to word  i want to know weather there is any method that can be use in changing value from number to word. Example if i write ten thousand, it will automatically be written as 10000.   Java convert number 

Java Beginners

Another distance conversion - Java Beginners
Another distance conversion  Write an application that reads a distance in metres. The program will then convert the distance to kilometres, feet... a method for each conversion ? toKilometres(), toFeet(), and toInches 

Java Interview Questions

how to count words in string using java
++; } System.out.println("Number of words are: "+count); } } Thanks   Hello...how to count words in string using java  how to count words in string... count=0; String arr[]=st.split(" "); System.out.println("Number 

Java Tips and Examples

Exercise - Count Words
Java: Exercise - Count Words Problem Write a method which counts the number of words in a string. Assume that a word is defined as a sequence of letters.... countWords("Hello world")2Two word. countWords("Hello, world.")2Still two words 

Java Beginners

Reports to pdf conversion
Reports to pdf conversion  I need to convert reports into pdf format using java.. Will i get any sample code 

Java Beginners

How to convert long to hexadecimal - Java Beginners
/java/java-conversion/HexadecimalToBinaryAndLong.shtml Thanks...How to convert long to hexadecimal  Dear all, anyone know how to convert long data to hexadecimal, please send me the information. Thanks  

Java Beginners

pdf to xml conversion
pdf to xml conversion  i want to convert pdf file into xml file.. where i am having a table in pdf file with some headers and some data into it. i want the headers to be the tag of xml file. how can i do that using java? please 

Java Tips and Examples

Convert Hexadecimal number into Integer
Convert Hexadecimal number into Integer ... to convert hexadecimal data into integer. The java.lang package provides the functionally to convert the hexadecimal data into an integer type data.  Code 

General

Casting (Type Conversion)
are there in java. Some circumstances requires automatic type conversion, while in other cases... Java performs automatic type conversion when the type of the expression... Casting (Type Conversion)       

Core Java

Java integer to string
/java/java-conversion/convert-number-to-string.shtml  ...; Many times we need to convert a number to a string to be able to operate...;toString()" method can also be used for the conversion. Read more at: http 

Java Tips and Examples

Convert Number to String
Convert Number to String       In this section, we will learn how to convert numbers to String. The following program provides you the functionality to convert numbers to String 

Java Beginners

A Program To Reverse Words In String in Java .
A Program To Reverse Words In String in Java .  A Program To Reverse Words In String in Java :- For Example :- Input:- Computer Software Output :- Software Computer 

Java Beginners

A Program To Reverse Words In String in Java .
A Program To Reverse Words In String in Java .  A Program To Reverse Words In String in Java :- For Example :- Input:- Computer Software Output :- Software Computer 

Java Beginners

A Program To Reverse Words In String in Java .
A Program To Reverse Words In String in Java .  A Program To Reverse Words In String in Java :- For Example :- Input:- Computer Software Output :- Software Computer 

Java Beginners

A Program To Reverse Words In String in Java .
A Program To Reverse Words In String in Java .  A Program To Reverse Words In String in Java :- For Example :- Input:- Computer Software Output :- Software Computer 

Java Beginners

A Program To Reverse Words In String in Java .
A Program To Reverse Words In String in Java .  A Program To Reverse Words In String in Java :- For Example :- Input:- Computer Software Output :- Software Computer 

Java Tips and Examples

Example - Read Words
Java Notes: Example - Read Words The program below reads a text file and lists the words alphabetically. GUI interface and model 1 2 3 4.../ReadWordsGUI.java // Purpose: Read a file and display all words in it. // Author 

Programming Tutorials

Java: Programming: Kingdom - Solution
Java NotesProgramming: Kingdom - Solution 1 2 3 4 5 6... /** Compute the maximum number of bushels of seed that can be used * based on the number of peasants for farming, and the amount of * land 

Java Beginners

object conversion - Java Beginners
/java-conversion/ObjectToDouble.shtml Thanks... sandeep kumar suman...object conversion   Hi, Can anybody tell me the object conversion in java.   Hi sandeep Can u please tell me in details about your 

Development process Questions

java code for conversion of arraylist to string - Development process
java code for conversion of arraylist to string  Hi, i have an arraylist contains [a,b,value,c,d,value]when ever value comes it will split into seperation.fo that i want to convert into string, after that split the string 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.