所以我已经在这部分代码上工作了一段时间,我需要帮助。我需要使用子字符串垂直打印出用户输入。我想我已经很接近了,但我认为只需要一点小费。
public static void method3(){
System.out.print("Method 3");
Scanner console = new Scanner(System.in);
String height = console.nextLine();
System.out.println(" Type in a word to be printed vertically!");
String str = console.nextLine();
System.out.println(str.charAt(height) + " ");