本帖最後由 鄭繼威 於 2023-9-20 19:56 編輯
printf()函式輸出練習:
%d 整數
%s 字串
%S 轉換為大寫字母的字串
- public class Ch65
- {
- public static void main(String[] args)
- {
- String str1="dogs", str2="cat";
- int a=3, b=5;
- System.out.printf("There are %d %s and %d %Ss.",a,str1,b,str2);
- }
- }
複製代碼 |