无
包括两行:第一行为“Hello world!”第二行为printf(“Hello world!”)调用后的返回值。
PrintStream
#java代码 public class Main{ public static void main(String[] args) { String s="Hello world!"; System.out.println(s); System.out.println(s.length()); } } #python代码 s="Hello world!" print(s) print(len(s))
s="Hello world!" print(s) print(len(s))
public class Main{ public static void main(String[] args){ System.out.println("Hello world!"); System.out.println("Hello world!".length()); } }
实际上java里返回的是打印流。。
这道题你会答吗?花几分钟告诉大家答案吧!
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题