Board logo

標題: printf() 輸出練習 [打印本頁]

作者: tonyh    時間: 2019-8-7 14:09     標題: printf() 輸出練習

試以 printf() 方法做字串輸出。
%d 整數
%s 字串
%S 轉換為大寫字母的字串
%.2f 四捨五入至小數點後2位

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

作者: 張郁庭    時間: 2019-8-7 14:32

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

作者: 莊鈞程    時間: 2019-8-7 14:32

  1. import java.util.Scanner;
  2. import java.util.Arrays;
  3. public class Ch60 {
  4.     public static void main(String args[]){
  5.         String str1="dog",str2="cat";
  6.         int a=4,b=5;
  7.         double total=21.3568;
  8.         System.out.printf("There are %d %ss and %d %Ss totally weight %.2f pounds.",a,str1,b,str2,total);
  9.     }
  10. }
複製代碼

作者: 黃永恩    時間: 2019-8-7 14:32

  1. import java.util.Scanner;


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

作者: 蔡明蓉    時間: 2019-8-7 14:33

  1. public class Ch60 {
  2.         public static void main(String[] args) {
  3.                 String str1="dog",str2="cat";
  4.                 int a=3,b=5;
  5.                 double total=21.3568;
  6.                 System.out.printf("There are %d %ss and %d %SS totally weigh %.2f pounds.",a,str1,b,str2,total);
  7.         }
  8. }
複製代碼

作者: 余奕廷    時間: 2019-8-7 14:33

  1. public class Ch01 {

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

作者: 許育慈    時間: 2019-8-7 14:34

  1. import java.util.Scanner;
  2. public class Ch01 {
  3.         public static void main(String[] args) {
  4.             int d=3,c=5;
  5.             String str1="dog",str2="cat";
  6.             double total=21.3568;
  7.             System.out.printf("There are %d %ss and %d %Ss totally weigh %.2f pounds.",d,str1,c,str2,total);
  8.         }
  9. }
複製代碼

作者: 張書涵    時間: 2019-8-7 14:34

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

作者: 潘憶承    時間: 2019-8-7 14:34

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

作者: 葉俠愷    時間: 2019-8-7 14:34

  1. import java.util.Scanner;


  2. public class Ch11 {
  3.        
  4.         static int  f(int b)
  5.         {
  6.                 if(b==1)
  7.                 {
  8.                return 1;
  9.                
  10.                 }else
  11.                 {
  12.                         return b*f(b-1);
  13.                                        
  14.                 }
  15.         }

  16.         public static void main(String[] args) {
  17.                
  18.                 Scanner s=new Scanner(System.in);
  19.                 int a=3,b=5;
  20.                 double t=21.985;
  21.                 String str1="dog",str2="cat";
  22.                 System.out.printf("There are %d%ss and %d %Ss totally weight%.2f pounds",a,str1,b,str2,t);
  23.                
  24.                
  25.                
  26.       

  27.         }

  28. }
複製代碼

作者: 余映均    時間: 2019-8-7 14:34

  1. public class Ch02 {
  2.    
  3.         public static void main(String[] args) {
  4.             int a=3,b=5;
  5.             String Str1="dog",Str2="cat";
  6.             double total=21.3568;
  7.             System.out.printf("There are %d %ss and %d %Ss totally weigh %.2f pounds.",a,Str1,b,Str2,total);        
  8.         }
  9. }
複製代碼

作者: 黃芊嬡    時間: 2019-8-7 14:34

  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.                 double total=21.3568;
  8.                 System.out.printf("There are %d %ss and %d %Ss totally weight %.2f pounds.",a,str1,b,str2,total);
  9.         }
  10. }
複製代碼

作者: 李沛儒    時間: 2019-8-7 14:35

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

作者: 許育禎    時間: 2019-8-7 14:35

  1. public class CH01 {      
  2.     public static void main(String[] args)
  3.     {
  4.             String str1="dog",str2="cat";
  5.             int a=3,b=5;
  6.             double total=21.3568;
  7.             System.out.printf("There are %d %ss and %d %Ss totally weigh %.2f pounds.",a,str1,b,str2,total);

  8.     }
  9. }
複製代碼

作者: 曾暘竣    時間: 2019-8-7 14:35

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

作者: 鄭宇崴    時間: 2019-8-7 14:37

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

作者: 何育翔    時間: 2019-8-7 14:38

  1. public class Ch01{
  2.         public static void main(String[] args)
  3.         {
  4.                 String str1="dog",str2="cats";
  5.                 int a=3,b=5;
  6.                 double total=21.3568;
  7.                 System.out.printf("There are %d %Ss and %d %Ss totally weigh %.2f pounds.",a,str1,b,str2,total);       
  8.         }
  9. }
複製代碼





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