Board logo

標題: printf() 函式 (二) [打印本頁]

作者: tonyh    時間: 2018-2-10 14:29     標題: printf() 函式 (二)

本帖最後由 tonyh 於 2019-2-18 19:33 編輯

printf()函式輸出練習:
%d 整數
%s 字串
%S 轉換為大寫字母的字串

  1. public class Ch65
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         String str1="dog", str2="cat";
  6.         int a=3, b=5;
  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  8.     }
  9. }
複製代碼

作者: 洪榜蔓    時間: 2018-2-10 15:09

  1. public class Ch65

  2. {

  3.     public static void main(String[] args)

  4.     {

  5.         String str1="dog", str2="cat";

  6.         int a=3, b=5;

  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);

  8.     }

  9. }
複製代碼

作者: 蔡幸融    時間: 2018-2-10 15:13

  1. public class Ch54
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         String str1="dog", str2="cat";
  6.         int a=3, b=5;
  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  8.     }
  9. }
複製代碼

作者: 高睿辰    時間: 2018-2-10 15:25

  1. public class Ch55
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         String str1="dog", str2="cat";
  6.         int a=3, b=5;
  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  8.     }
  9. }
複製代碼

作者: 黃宥鈞    時間: 2018-2-18 13:24

  1. public class Ch65
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         String str1="dog", str2="cat";
  6.         int a=3, b=5;
  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  8.     }
  9. }
複製代碼

作者: 蕭澧邦    時間: 2018-2-23 20:22

  1. public class Ch65
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         String str1="dog", str2="cat";
  6.         int a=3, b=5;
  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  8.     }
  9. }
複製代碼

作者: 莊旻叡    時間: 2018-2-24 14:09

  1. public class Ch65
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         String str1="dog", str2="cat";
  6.         int a=3, b=5;
  7.         System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  8.     }
  9. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2