作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个控制台项目,它是一个简单的刽子手游戏。这是我到目前为止所做的...
static String answer;
static String display = "";
public static void main(String[] args) {
System.out.println("please enter the word or phrase to be guessed");
answer = input.next();
System.out.print("Please make a guess: ");
//loop to check each character in the string
for(int i = 0; i < answer.length(); i++){
if(answer.charAt(i) != ' ') {
//adds an underscore to the String that will be printed
display += "_";
}//end if
else {
//adds a space to the String that will be printed
display += " ";
}//end else
}//end for
System.out.print(display);
}
我想要的是浏览用户输入的一些文本,并在字母的情况下打印下划线,否则创建一个空格。
我想我将以错误的方式向字符串添加空格,并且找不到有同样问题的人。
实际发生的情况如下所示,
它正在做的是打印正确数量的下划线,直到遇到第一个空格,然后停止。
最佳答案
input.next()
仅读取直到第一个空格“”。如果你想读取整行,你需要使用 input.nextLine()
关于java - 如何向现有字符串添加空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60771855/
我是一名优秀的程序员,十分优秀!