You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Hello3.java 414B

1234567891011121314151617
  1. public class Hello3 {
  2. public static void main(String[] args) {
  3. say1("hello");
  4. }
  5. public static void say1(String h) {
  6. System.out.println(h);
  7. String s = say2("world");
  8. System.out.println("from say2="+s);
  9. }
  10. public static String say2(String w) {
  11. System.out.println(w);
  12. return "";
  13. }
  14. }