德明科大楊朝淞HTML 楊朝淞學習HTML STYLE心得 我學得很快樂 public class Main { public static void main(String[] args) { Spring s;// 宣告字串s s="德明科大財金系"; System.out.println("楊朝淞在WCSchool學Java"); s=s+"楊朝淞";//程式的=是assign給予或取代值,+串接 System.out.println(s); System.out.println("長度:" + s.length()); } }