返回列表 發帖

108

本帖最後由 許承鴻 於 2018-6-5 18:58 編輯

class JPA01 {
  

  
  public static void main (String[] args) {
    int i = add(2, 3);
    double d = add(5.2, 4.3);
    String s = add("I love ", "Java!!");
    System.out.printf("%d %f %s %n", i, d, s);
  }
}
Stay hungry,
Stay foolish.

返回列表