fork download
  1. class output {
  2. public static void main(String args[])
  3. {
  4. StringBuffer s1 = new StringBuffer("Hello World");
  5. s1.insert(6 , "Good ");
  6. System.out.println(s1);
  7. }
  8. }
Success #stdin #stdout 0.08s 34548KB
stdin
Standard input is empty
stdout
Hello Good World