JAVA
printf的返回值
http://www.nowcoder.com/questionTerminal/a19ef1d8e55c4cc786f11cbf6b2fde61
public class Main
{
public static void main(String[] args)
{
String a="Hello world!";
System.out.println(a);
System.out.println(a.length());
}
}
//a.length() 字符串长度 记得带()
数组长度不用带()