APCSA/U5/L2/U5_L2_Coding_Acitvity_Two.java
2026-03-25 09:44:12 -07:00

23 lines
555 B
Java

/* Lesson 2 Coding Activity Question 2 */
import java.util.Scanner;
public class U5_L2_Activity_Two {
/* Add the method reverser here */
public static void reverser(String s) {
for (int i = s.length() - 1; i >= 0; i--) {
System.out.print(s.charAt(i));
}
System.out.println();
}
// You can uncomment and add to the main method to test your code
// You will need to remove/comment out this method before checking your code for a score
/*
public static void main(String[] args){
}
*/
}