下面程序执行后的输出结果为()。public class fun{public static void main(String args[]){Strin
下面程序执行后的输出结果为()。 public class fun { public static void main(String args[]) { String greets = " How are you!"; String s = greets.substring(0,3); System.out.println(s); } }
A.How
B.are
C.you
D.how are you!