gpt4 book ai didi

java - 将用户的输入放在双引号之间

转载 作者:行者123 更新时间:2023-12-01 17:57:29 25 4
gpt4 key购买 nike

import java.util.Scanner;
public class InputTest {

public static void main(String[] args) {
Scanner input = new Scanner(System.in);

System.out.print("Enter your first name : ")
String Answer = input.next();
System.out.println(Answer + " is your first name.");
}

}

如果用户输入John

输出将显示:John 是你的名字。

我的问题:如何将输出更改为 "John" 而不是 John

最佳答案

试试这个

System.out.print("\"" + scanner + "\"" + "is not a valid command. Please try again : ");

这通过使用 \ 来转义 "

关于java - 将用户的输入放在双引号之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43546229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com