题目:下面哪个结果是正确的?() public class Testjava { public static void main(String [] args ){ StringBuffer buf=new StringBuffer("mycode666"); buf.insert(5,"@"); System.out.println(buf.toString()); } }
A. mycode@666
B. myco@de666
C. mycod@e666
D. Mycode666
答案:评论后可见此内容