0
Reverse of a string can any body tell me how can I do this ?
.
8 Respuestas
0
//corrected code , read comments for corrections explanation. Hope it helps..
import java.util.Scanner;
public class Program
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String text = scanner.nextLine();
char[] arr = text.toCharArray();
//char[] c ; you must initialize array size in java.
char[] c = new char[arr.length];
//size of arr.length is enough
//your code goes here
for(int i=arr.length-1;i>=0;i--) // max index value is arr.length-1 since index starts from 0 (not from 1).
c[i]=arr[i]; // you must give index value or subcript in c[]
for(int i=0;i<arr.length;i++)
System.out.print(c[i]);// same here must give index value
}
}
+ 4
Mention the relevant language name in tags please.
if the string is "hello", then take the length of it , i.e.5 and run a for loop with 5-1 as initial value all the way down to 0 and at the print the character at that index
+ 2
import java.util.Scanner;
class reverseofaString
{
public static void main(String[ ] arg)
{
String str;
Scanner scan=new Scanner(System.in);
System.out.print("Enter a string : ");
str=scan.nextLine();
char[] ch=str.toCharArray();
System.out.println("Reverse of a String is :");
int j=ch.length;
for(int i=j;i>0;i--)
{
System.out.print(ch[i-1]);
}
}
}
+ 1
import java.util.Scanner;
public class Program
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String text = scanner.nextLine();
char[] arr = text.toCharArray();
char[] c;
//your code goes here
for(int i=arr.length;i>0;i--)
c[]=arr[i];
for(int i=0;i<arr.length;i++)
System.out.print(c[]);
}
}
+ 1
Iterate through the char array in reverse order.
+ 1
// first, you should initialize your 'c' char array:
char[] c = new char[arr.length];
// then you should acess array items by giving index in square brackets (so, you doesn't need to iterate backwards:'):
for (int i=0; i<arr.length; ++i)
c[i] = arr[arr.length-i-1];
// also in second loop:
System.out.print(c[i]);
0
In java how can I convert string into character