gpt4 book ai didi

java - 为什么 println 和字符串中的空格不适用于此代码?

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

我的代码

public class DataTypes{
public static void main(String args[]){
char ch1;
ch1 = 'X';
System.out.print("ch1 contains " + ch1);
ch1++;
System.out.println("ch1 contains " + ch1);
}
}

输出

ch1 containsXch1 containsY

预期输出:

ch1 contains X
ch1 contains Y

为什么我的代码在打印 x 和 y 以及新行字符时不添加空格。

最佳答案

    char ch1;
ch1 = 'X';
System.out.println( "ch1 contains " + ch1 );
ch1++;
System.out.println( " ch1 contains " + ch1 );

您错过了第一个打印语句中的println

关于java - 为什么 println 和字符串中的空格不适用于此代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61221013/

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