返回列表 發帖

TQC+ 103 計算平均值

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. import java.text.DecimalFormat;
  2. import java.util.Scanner;

  3. public class JPA01 {
  4.     public static void main(String args[]){
  5.     System.out.println("Please input:");
  6.     Scanner scanner = new Scanner(System.in);
  7.     float x = scanner.nextInt();
  8.     float y = scanner.nextInt();
  9.     float z = scanner.nextInt();
  10.     float Average = (x+y+z)/3;
  11.     DecimalFormat df = new DecimalFormat("#.##");
  12.     String AVG = df.format(Average);
  13.     System.out.print("Average:"+AVG);
  14.         }
  15. }
複製代碼

TOP

  1. import java.text.DecimalFormat;
  2. import java.util.Scanner;
  3. public class JPA01 {
  4.         public static void main (String args[]){
  5.         Scanner scanner =new Scanner(System.in);       
  6.                 System.out.println("Please input");
  7.                 int x =scanner.nextInt();
  8.                 int y =scanner.nextInt();
  9.                 int z =scanner.nextInt();
  10.                 float total = (float)(x+y+z)/3;
  11.                
  12.                 DecimalFormat df =new DecimalFormat("#.##");
  13.                 String t = df.format(total);
  14.                 System.out.println("Average:"+total);
  15.         }
  16. }
複製代碼

TOP

  1. import java.math.BigDecimal;
  2. import java.util.Scanner;



  3. public class JPA01 {
  4.        
  5.     public static void main (String args[]){
  6.            
  7.             System.out.println("Please input:");
  8.             Scanner scanner = new Scanner(System.in);
  9.             float num1 = scanner.nextInt();
  10.             float num2 = scanner.nextInt();
  11.             float num3 = scanner.nextInt();
  12.            
  13.             float Average;
  14.            
  15.             Average = ( num1 + num2 + num3 )/3;
  16.            
  17.             double   ft   =   Average;   
  18.               int   scale   =   2;
  19.               int   roundingMode   =   4;
  20.               BigDecimal   bd   =   new   BigDecimal((double)ft);   
  21.               bd   =   bd.setScale(scale,roundingMode);   
  22.               ft   =   bd.floatValue();
  23.            
  24.             System.out.print("Average : "+ft);
  25.                    
  26.             }
  27.     }
複製代碼

TOP

  1. import java.util.Scanner;



  2. public class JPA01 {
  3.     public static void main(String args[])
  4.     {
  5.             Scanner scanner = new Scanner(System.in);
  6.             int x = scanner.nextInt();
  7.             int y = scanner.nextInt();
  8.             int z = scanner.nextInt();
  9.             float total = x+y+z;
  10.             System.out.println(total/3);
  11.     }
  12. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class JPA01
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 System.out.println("Please input:");
  7.                 Scanner s = new Scanner(System.in);
  8.                
  9.                 float x,y,z;
  10.                 x = s.nextFloat();
  11.                 y = s.nextFloat();
  12.                 z = s.nextFloat();
  13.                 System.out.printf("Average: %.2f",(x+y+z)/3);
  14.                
  15.                
  16.                
  17.                
  18.         }
  19.    




  20. }
複製代碼

TOP

返回列表