Write a program to display numeric value in reverse order.
Ex: I have given a number like 7584, It should display in
reverse order like 4857.

Answers were Sorted based on User's Feedback



Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It ..

Answer / pankaj

int n=1856,rem,n1,temp=0;

for(int i=0;n>=1;i++)
{
rem=n%10;
n=n/10;
temp=(temp*10)+rem;
}

Is This Answer Correct ?    7 Yes 0 No

Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It ..

Answer / srikanth

import java.io.*;
class palin{
public static void main(String as[]){
try{
InputStreamReader isr=null;
BufferedReader br=null;
br=new BufferedReader(new InputStreamReader(System.in));
int num=Integer.parseInt(br.readLine());
System.out.println(num);
int n=num;
int rev=0;
System.out.println("number");
System.out.println(num);
for(int i=0;i<=num;i++){
int r=num%10;
num=num/10;
rev=rev*10+r;
i=0;
}
System.out.println("after reversing"+rev);
if(n==rev){
System.out.println("number is palic");
}
else{

System.out.println("number is not palic");
}
}catch(Exception e){
System.out.println(e);
}
}
}

Is This Answer Correct ?    6 Yes 0 No

Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It ..

Answer / selvi

import java.util.Scanner;

public class IntReverseOrder
{
public static void main(String args[])
{
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
StringBuffer sb = new StringBuffer();
int remainder;

while(num>0)
{
remainder = num%10;
sb = sb.append(remainder);
num = num/10;

}
System.out.println("Reverse Order = "+sb);
}

}

Is This Answer Correct ?    4 Yes 1 No

Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It ..

Answer / pradyumna

public class Test1 {
public static void main(String[] args) {
StringBuffer s1 = new StringBuffer("1234");
System.out.println(s1);
s1.reverse();
System.out.println(s1);

}
}

Is This Answer Correct ?    3 Yes 0 No

Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It ..

Answer / ravi

Hi Deepak,

Thanks for responding....

You simple hard coded the script. If user given dynamic
values. what will be the result?

Is This Answer Correct ?    2 Yes 2 No

Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It ..

Answer / deepak

public class A
{
public static void main(String str[])
{
String s="7584";
System.out.println(s);
s.reverse();
System.out.println(s);
}}

Is This Answer Correct ?    7 Yes 9 No

Post New Answer

More J2EE Interview Questions

What is component in java with example?

0 Answers  


Name the Implicit variable which is used to access other implicit objectes present in JSP.

7 Answers   AZTEC,


Hi Friends. I want complete technical flow of j2ee project with following technologies. jsp , servlet , Struts , Hibernate , (should follow mvc-2 design pattern) . with DAO ,DTO SERVICE layers .

0 Answers   Infosys,


What is j2ee technology?

0 Answers  


What is caller?

0 Answers  






What every java developer should know?

0 Answers  


What is java technology stack?

0 Answers  


What do you mean by the component contract?

0 Answers  


Why is j2ee needed?

0 Answers  


Where javac is located?

0 Answers  


What is Connector architecture?

0 Answers  


How will you explain load() and get() methods?

0 Answers  


Categories