hello steemit community,
This is Ravi here
I know there is the various person who not interested with programming.
if some people like programming and love with code for those i write a program to reverse a string using java technology.
Program:
class Reversestring
{
public static void main(String args[])
{
String s="ravikumar";
char ch[] = s.toCharArray();
for(int i=s.length()-1;i>=0;i--)
{
System.out.print(ch[i]);
}
}
}
Hope you like it...
don't forget to follow me