Interview Question


Team: looking for some good solution.
Country: India




Comment hidden because of low score. Click to expand.
0
of 0 vote

class constNumtoLetter {

String[] unitdo = {"", " One", " Two", " Three", " Four", " Five",
" Six", " Seven", " Eight", " Nine", " Ten", " Eleven", " Twelve",
" Thirteen", " Fourteen", " Fifteen", " Sixteen", " Seventeen",
" Eighteen", " Nineteen"};
String[] tens = {"", "Ten", " Twenty", " Thirty", " Forty", " Fifty",
" Sixty", " Seventy", " Eighty", " Ninety"};
String[] digit = {"", " Hundred", " Thousand", " Lakh", " Crore"};
int r;

//Count the number of digits in the input number
int numberCount(int num) {
int cnt = 0;
while (num > 0) {
r = num % 10;
cnt++;
num = num / 10;
}
return cnt;
}

//Function for Conversion of two digit
String twonum(int numq) {
int numr, nq;
String ltr = "";
nq = numq / 10;
numr = numq % 10;
if (numq > 19) {
ltr = ltr + tens[nq] + unitdo[numr];
} else {
ltr = ltr + unitdo[numq];
}
return ltr;
}

//Function for Conversion of three digit
String threenum(int numq) {
int numr, nq;
String ltr = "";
nq = numq / 100;
numr = numq % 100;
if (numr == 0) {
ltr = ltr + unitdo[nq] + digit[1];
} else {
ltr = ltr + unitdo[nq] + digit[1] + " and" + twonum(numr);
}
return ltr;
}
}

public class NumberToString {

public static String getNumberToString(String numberStr) {
String resultStr = "";
int len, q = 0, r = 0;
String ltr = " ";
// String Str = "";
constNumtoLetter n = new constNumtoLetter();
int num = Integer.parseInt(numberStr);
if (num <= 0) {
System.out.println("Zero or Negative number not for conversion");
}
while (num > 0) {
len = n.numberCount(num);

//Take the length of the number and do letter conversion
switch (len) {
case 8:
q = num / 10000000;
r = num % 10000000;
ltr = n.twonum(q);
resultStr = resultStr + ltr + n.digit[4];
num = r;
break;
case 7:
case 6:
q = num / 100000;
r = num % 100000;
ltr = n.twonum(q);
resultStr = resultStr + ltr + n.digit[3];
num = r;
break;
case 5:
case 4:
q = num / 1000;
r = num % 1000;
ltr = n.twonum(q);
resultStr = resultStr + ltr + n.digit[2];
num = r;
break;
case 3:
if (len == 3) {
r = num;
}
ltr = n.threenum(r);
resultStr = resultStr + ltr;
num = 0;
break;
case 2:
ltr = n.twonum(num);
resultStr = resultStr + ltr;
num = 0;
break;
case 1:
resultStr = resultStr + n.unitdo[num];
num = 0;
break;
default:
num = 0;
System.out.println("Exceeding Crore....No conversion");
System.exit(1);
}

}
return resultStr;



}

public static void main(String[] args) throws Exception {
//Defining variables q is quotient, r is remainder''


System.out.print(getNumberToString(22));
}
}

- ashok kumar May 04, 2013 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More