Plz, tell me the error in this program...!! Did I successfully reversed the string garbage....!! I need ur help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Plz, tell me the error in this program...!! Did I successfully reversed the string garbage....!! I need ur help

import java.util.*; public class Program { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String text = "garbage"; String lght = text.lenght(); for(i=lght-1;i>=0;i--){ char letter = text.toCharAt(i); String rev =rev+letter; System.out.println(rev); } } }

3rd Jul 2020, 3:02 PM
Arya Deep Chowdhury
Arya Deep Chowdhury - avatar
2 Answers
+ 2
Fix a typo, text.lenght -> text.length text.length returns integral value, Change String lght -> int lght Define <rev> string as empty string before the for-loop, otherwise you won't get the result as expected. Undefined variable <i> in loop definition for(int i = lght - 1; i >= 0; i--) Change text.toCharAt -> text.charAt char letter = text.charAt(i) The line below better be out of the for-loop body, otherwise you will be printing <rev> in each loop iteration. System.out.println(rev);
3rd Jul 2020, 3:27 PM
Ipang
+ 1
Hello... Try this: import java.util.*; public class Program { public static void main(String[] args) { //Scanner scan = new Scanner(System.in); String text = "garbage"; //String lght = text.lenght(); int lght = text.length(); for(int i=lght-1;i>=0;i--){ char letter = text.charAt(i); String rev =""; rev=rev+letter; System.out.print(rev); } } }
3rd Jul 2020, 3:16 PM
Jesús Roberto GR 🇲🇽
Jesús Roberto GR 🇲🇽 - avatar