write a program, when a statement is entered, it should
display in reverse order.
Ex: Statement is "I am writing program in reverse order".
Output should be like "order reverse in program writing am I".

Answer Posted / ram shringar

public class Test {
public static void main(String abb[])throws Exception
{ int i=3;
String string[]=abb;
for(i=string.length-1;i>=0;i--)
{
System.out.print(string[i]+" ");
}
}
}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between load() and get()?

730


What is setfocusable in java?

787


Is j2ee a language or framework?

652


What is java full stack developer?

631


What is j2ee technology?

715


Is java ee and j2ee same?

650


What is Document Object Model?

747


Why java is called portable language?

658


What should a junior java developer know?

637


Where is java used?

665


What is form-based authentication?

703


Why is java used?

677


What is repaint in java?

657


Why java is oop language?

695


What is java awt event?

671