Board logo

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

作者: tonyh    時間: 2020-11-13 20:16     標題: printf() 函式 (二)

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. }
複製代碼

作者: 林政瑜    時間: 2020-11-13 20:22

  1. public class Ch01
  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. }
複製代碼

作者: 黃宥華    時間: 2020-11-13 20:22

  1. public class Ch999 {

  2.         public static void main(String[] args) {
  3.           String str1="dog";
  4.           String str2="cat";
  5.           int a=3,b=5;
  6.           System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  7.        

  8.         }

  9. }
複製代碼

作者: 陳宥穎    時間: 2020-11-13 20:22

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

作者: 孫嘉駿    時間: 2020-11-13 20:23

  1. public class Ch01 {

  2.         public static void main(String[] args) {

  3.                 String str1="dog", str2="cat";
  4.         int a=3,b=5;
  5.                 System.out.printf("There are %d %ss and %d %Ss.",a, str1, b, str2);   
  6.                

  7.         }

  8. }
複製代碼

作者: 董宸佑    時間: 2020-11-13 20:23

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 String str1="dog", str2="cat";
  4.                 int a=3, b=5;
  5.                 System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
  6.         }

  7. }
複製代碼

作者: 劉愷鈞    時間: 2020-11-13 20:24

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

作者: 沈子晏    時間: 2020-11-13 20:24

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 String str1="dog", str2="cat";
  4.                 int a=3, b=5;
  5.                 System.out.printf("There are %d %ss and %d %Ss .",a,str1,b,str2);

  6.         }

  7. }
複製代碼

作者: 黃柏叡    時間: 2020-11-13 20:25

  1. public class Ch01 {

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

作者: 夏子涵    時間: 2020-11-13 20:25

  1. public class Ch01
  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. }
複製代碼

作者: 蔡忻霓    時間: 2020-11-13 20:32

  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://istak.org.tw/seed/) Powered by Discuz! 7.2