码迷,mamicode.com
首页 > 编程语言 > 详细

java-7311练习(下)

时间:2016-11-18 23:09:52      阅读:380      评论:0      收藏:0      [点我收藏+]

标签:ges   radius   use   数字   vol   sim   can   遍历   max   

java练习,仅供参考!
欢迎同学们交流讨论。

JDK 1.8 API帮助文档
JDK 1.6 API中文文档

第一次小组作业:模拟双色球彩票

技术分享

游戏规则:
? 双色球为红球和蓝球
? 用户从1-33中自选6个数字(不能重复)代表红球;从1-16中自选1个数字代表蓝球;
? 上图为中奖规则,如一等奖为中6个红球及蓝球,二等奖为仅中6个红球……
? 请自拟六个奖项对应的奖品。

  1. package GroupFirst; 
  2.  
  3. import java.util.Scanner; 
  4.  
  5. /** 
  6. * 第一次小组作业:模拟双色球彩票  
  7. * ?游戏规则 
  8. * ?双色球为红球和蓝球 
  9. * ?用户从1-33中自选6个数字(不重复)代表红球;从1-16中自选1个数字代表蓝球 
  10. * ?上图为中奖规则,如一等奖为中6个红球及蓝球,二等奖为仅中6个红球…… 
  11. * ?请自拟六个奖项对应的奖品 
  12. */ 
  13. public class Balllottery 

  14. private int[] betRedBall = new int[6]; //存放选择的6个红球 
  15. private int betBlueBall; //1个蓝球 
  16. Scanner scan = null; //扫描器对象 
  17. private int[] winningRedBall = {1,2,3,4,5,6}; //红球中奖号码 
  18. private int winningBlueBall = 7; //蓝球中奖号码 
  19.  
  20. public static void main(String[] args) 

  21. Balllottery lottery = new Balllottery(); 
  22. //1 2 3 4 5 66 7 8 
  23. //从1-33中自选6个数字(不重复)代表红球 
  24. lottery.seletRedBall();//lottery.seletRedBall(); 
  25. System.out.println("--------红球选择完成-----------"); 
  26.  
  27. //从1-16中自选1个数字代表蓝球 
  28. lottery.seletBlueBall(); 
  29. System.out.println("--------蓝球选择完成-----------"); 
  30.  
  31. //投注并开奖; 
  32. int level = lottery.lotteryBetting(); 
  33. //显示奖品;  
  34. lottery.showResults(level); 
  35.  

  36.  
  37. public void showResults(int level) 

  38. System.out.println("---------------------------"); 
  39. System.out.print("您的投注为:"); 
  40. for (int i = 0; i < betRedBall.length; i++) 
  41. System.out.printf("%-3d",betRedBall[i]); 
  42. System.out.print(", " + betBlueBall + "\n"); 
  43.  
  44. System.out.print("开奖号码为:"); 
  45. for (int i = 0; i < winningRedBall.length; i++) 
  46. System.out.printf("%-3d",winningRedBall[i]); 
  47. System.out.print(", " + winningBlueBall + "\n\n"); 
  48.  
  49. //根据中奖等级分配奖品 
  50. switch (level) 

  51. case 0: System.out.println("抱歉,您没中奖!"); break
  52. case 1: System.out.println("一等奖,恭喜您获得自行车一辆!"); break
  53. case 2: System.out.println("二等奖,恭喜您获得保温杯一个!"); break
  54. case 3: System.out.println("三等奖,恭喜您获得新书包一个!"); break
  55. case 4: System.out.println("四等奖,恭喜您获得记事本一个!"); break
  56. case 5: System.out.println("五等奖,恭喜您获得签字笔一个!"); break
  57. case 6: System.out.println("六等奖,恭喜您获得黑铅笔一个!"); break

  58. System.out.println("\n---------------------------"); 

  59.  
  60. // 从1-33中自选6个数字(不重复)代表红球 
  61. public void seletRedBall() 

  62. //用一个数组来存放33个红球并赋值1-33号 
  63. int[] redBall = new int[33];  
  64. for (int i = 0; i < redBall.length; i++) 
  65. redBall[i] = i + 1; // 1--33 
  66.  
  67. // used表示已经出现过的红球 ; boolean数组默认初始为false 
  68. boolean[] used = new boolean[redBall.length]; 
  69.  
  70. int count = 0; //统计下注红球个数 
  71.  
  72. // 输入6个不重复的红球号码,并存放到bet数组 
  73. //Scanner scan = null; 
  74. scan = new Scanner(System.in); 
  75. System.out.println("请输入6个红球号码(1-33):"); 
  76.  
  77. while (scan.hasNext()) 

  78. int num = scan.nextInt(); // 获得输入 
  79.  
  80. // 如果这个号码是1-33号,那么就重新选择 
  81. if (num < 1 || num > 33

  82. System.out.println("没有" 
  83. + num + "号,请选1-33号。您还需要选择" 
  84. + (6-count) +"个红球!"); 
  85. continue

  86. // 如果这个号码没有被选过,那么就放到bet数组 
  87. if (!used[num]) 

  88. betRedBall[count++] = num; 
  89. used[num] = true
  90. System.out.println("已选" 
  91. + num + "号!您还需要选择" 
  92. + (6-count) +"个红球!"); 

  93. else  

  94. System.out.println(num + "号已选过,您还需要选择" 
  95. + (6-count) +"个红球!"); 

  96. // 选完6个红球则跳出循环 
  97. if (count==6) break


  98.  
  99. // 从1-16中自选1个数字代表蓝球  
  100. public void seletBlueBall() 

  101. // 输入1个蓝球号码 
  102. //Scanner scan = null; 
  103. scan = new Scanner(System.in); 
  104. System.out.print("请输入1个蓝球号码(1-16):"); 
  105. int num ; 
  106. while (scan.hasNextLine()) 

  107. num = scan.nextInt(); // 获得输入 
  108. // 
  109. // 如果这个号码是1-16号,那么就重新选择 
  110. if (num < 1 || num > 16

  111. System.out.println("没有" 
  112. + num + "号,请选1-16号!"); 
  113. continue

  114. else 

  115. betBlueBall = num; 
  116. System.out.println("已选" 
  117. + num + "号!"); 
  118. break



  119.  
  120. // 投注并开奖 
  121. public int lotteryBetting() 

  122. int correctRedCount = 0; // 猜中的红球个数 
  123. boolean correctBlueCount = false; // 是否猜中篮球 
  124.  
  125. //遍历选择的红球;对比开奖结果 算出中奖的红球个数 
  126. for (int i = 0; i < betRedBall.length; i++) 

  127. for (int j = 0; j < winningRedBall.length; j++) 

  128. if (betRedBall[i] == winningRedBall[j]) 

  129. correctRedCount++; 
  130. continue



  131.  
  132. // 判断是否猜中蓝球 
  133. if (betBlueBall == winningBlueBall) correctBlueCount = true;  
  134.  
  135. /** 没中奖 返回 0 
  136. * 一等奖 中 6+1 
  137. * 二等奖 中 6+0 
  138. * 三等奖 中 5+1 
  139. * 四等奖 中 5+0 中 4+1 
  140. * 五等奖 中 4+0 中 3+1 
  141. * 六等奖 中 2+1 中 0+1 中 1+1 
  142. */ 
  143. System.out.println("Debug:" 
  144. + correctRedCount + "," + correctBlueCount); 
  145. if (correctRedCount == 6

  146. if (correctBlueCount) return 1
  147. else return 2

  148. if (correctRedCount == 5

  149. if (correctBlueCount) return 3
  150. else return 4

  151. if (correctRedCount == 4

  152. if (correctBlueCount) return 4
  153. else return 5

  154. if (correctBlueCount) 

  155. if (correctRedCount == 3) return 5
  156. //else if (correctRedCount == 2) return 6; 
  157. //else if (correctRedCount == 1) return 6; 
  158. else return 6
  159.  

  160. return 0


运行结果:

技术分享

week7 Cylinder(二)

2个文件 cylinder_1.dat, cylinder_0.dat都放在项目根目录的resource包下,内容如下:

技术分享

7.1 Cylider.java

  1. package week7; 
  2.  
  3. import java.text.DecimalFormat; 
  4.  
  5. /** 
  6. * 7.1 创建 Cylinder类,以存储标签、半度; 
  7. * 方法包括获得及设置这些成员变量,计算直径、周长面积及体积。  
  8. */ 
  9. public class Cylinder 

  10. private String lable; //存储标签 
  11. private double radius; //圆柱半径 
  12. private double height; //圆柱的高 
  13. Cylinder(String lable, double radius, double height) 

  14. this.lable = lable; 
  15. this.radius = radius; 
  16. this.height = height; 

  17.  
  18. public String getLable() 

  19. return lable; 

  20.  
  21. public boolean setLable(String lable) 

  22. boolean flag = true
  23.  
  24. if (lable.isEmpty()) flag = false
  25. else this.lable = lable.trim(); 
  26. //String.trim()截去字符串开头和末尾的空白 
  27. return flag; 

  28.  
  29. public double getRadius() 

  30. return radius; 

  31.  
  32. public void setRadius(double radius) 

  33. this.radius = radius; 

  34.  
  35. public double getHeight() 

  36. return height; 

  37.  
  38. public void setHeight(double height) 

  39. this.height = height; 

  40.  
  41. //返回圆柱底面直径 
  42. public double diameter() 

  43. return radius * 2

  44.  
  45. //返回圆柱底面周长 
  46. public double circumference() 

  47. return diameter() * Math.PI; 

  48.  
  49. //返回 表面积 = 圆柱底面积×2 + 底面周长×高 
  50. public double area() 

  51. return Math.PI * radius * radius * 2 
  52. + circumference() * height; 

  53.  
  54. //返回 圆柱底体积 
  55. public double volumn() 

  56. return Math.PI * radius * radius * height; 

  57.  
  58. @Override 
  59. public String toString() 

  60. String output = null
  61. DecimalFormat df = new DecimalFormat("#,##0.0##"); 
  62. output = lable 
  63. + " is a cylinder with radius = " + df.format(radius) 
  64. + " units and height = " + df.format(height) 
  65. + " units, " 
  66. + "\nwhich has diameter = " + df.format(diameter()) 
  67. + " units, circumference = " + df.format(circumference()) 
  68. + " units, " 
  69. + "\narea = " + df.format(area()) 
  70. + " square units, and volume = " + df.format(volumn()) 
  71. + " cubic units.\n"
  72. return output; 

  73.  
  74. public static void main(String[] args) 

  75. Cylinder c1 = new Cylinder("Small Example", 4.0, 10.0); 
  76. Cylinder c2 = new Cylinder("Medium Example", 22.1, 30.6); 
  77. Cylinder c3 = new Cylinder("Large Example", 100.0, 200.0); 
  78. c1.setLable(""); 
  79. System.out.println(c1); 
  80. System.out.println(c2); 
  81. System.out.println(c3); 


  82.  

7.2 CylinderList.java

  1. package week7; 
  2.  
  3. import java.text.DecimalFormat; 
  4. import java.util.ArrayList; 
  5.  
  6. /** 
  7. * 7.2 CylinderList类  
  8. */ 
  9. public class CylinderList 

  10. private String listName; 
  11. private ArrayList<Cylinder> cList; 
  12.  
  13. CylinderList(String listName, ArrayList<Cylinder> cList) 

  14. this.listName = listName; 
  15. this.cList = cList; 

  16.  
  17. //返回一个代表几何名字的字符串 
  18. public String getName() 

  19. return listName; 

  20.  
  21. //返回代表集合中Cylinder对象的个数 
  22. public int numberOfCylinders() 

  23. return cList.size(); 

  24.  
  25. //返回 所有的Cylinder对象的 高 的和 
  26. public double totalHeight() 

  27. double totalHeight = 0
  28. for (Cylinder cylinder : cList) 

  29. totalHeight += cylinder.getHeight(); 

  30. return totalHeight; 

  31.  
  32. //返回 所有的Cylinder对象的 圆柱底面直径 的和 
  33. public double totalDiameter() 

  34. double totalDiameter = 0
  35. for (Cylinder cylinder : cList) 

  36. totalDiameter += cylinder.diameter(); 

  37. return totalDiameter; 

  38.  
  39. //返回 所有的Cylinder对象的 面积 之和 
  40. public double totalArea() 

  41. double totalArea = 0
  42. for (Cylinder cylinder : cList) 

  43. totalArea += cylinder.area(); 

  44. return totalArea; 

  45.  
  46. //返回 所有的Cylinder对象的 体积 之和 
  47. public double totalVolume() 

  48. double totalVolume = 0
  49. for (Cylinder cylinder : cList) 

  50. totalVolume += cylinder.volumn(); 

  51. return totalVolume; 

  52.  
  53. //返回 所有的Cylinder对象 面积 的 平均值 
  54. public double averageArea() 

  55. double averageArea = 0
  56. if (cList.size()>0

  57. averageArea = totalArea()/cList.size(); 

  58. return averageArea; 

  59.  
  60. //返回 所有的Cylinder对象 体积 的 平均值 
  61. public double averageVolume() 

  62. double averageVolume = 0
  63. if (cList.size()>0

  64. averageVolume = totalVolume()/cList.size(); 

  65. return averageVolume; 

  66.  
  67. //返回 集合的名字及集合中每一个对象的toString方法 
  68. public String toString() 

  69. String output = "\n" + listName + "\n\n"
  70. for (Cylinder cylinder : cList) 

  71. output += (cylinder.toString() + "\n");  

  72. return output; 

  73.  
  74. //返回 集合的名字及Cylinder对象个数, 
  75. //总面积,总体积,平均面积及平均体积 
  76. public String summaryInfo() 

  77. String output = null
  78. DecimalFormat df = new DecimalFormat("#,##0.0##"); 
  79. output = "-----" + listName + " Summary-----" 
  80. + "\nNimber of Cylinders: " + numberOfCylinders() 
  81. + "\nTotal Area: " + df.format(totalArea()) 
  82. + "\nTotal Volume: " + df.format(totalVolume()) 
  83. + "\nTotal Height: " + df.format(totalHeight()) 
  84. + "\nTotal Diameter: " + df.format(totalDiameter()) 
  85. + "\nAverage Area: " + df.format(averageArea()) 
  86. + "\nAverage Volume: " + df.format(averageVolume()); 
  87. return output; 


7.3 CylinderListApp 测试类

  1. package week7; 
  2.  
  3. import java.io.File; 
  4. import java.io.FileNotFoundException; 
  5. import java.util.ArrayList; 
  6. import java.util.Scanner; 
  7.  
  8. /** 
  9. * 7.3 CylinderListApp 测试类 
  10. * (a) 打开用户输入的文件并读取第一行作为集合的名字;之后读取其他行, 
  11. * 依次生成Cylinder对象,最后生成CylinderList对象。 
  12. * (b) 输出CylinderList对象(调用toString方法),之后空一行, 
  13. * (c) 输出CylinderList对象的汇总信息(调用summaryInfo方法) 
  14. * 注意: 
  15. * 1)如果输入文件名后出现错误称找不到文件,此时可输出绝对路径 
  16. * 2)读取文件第一行作为集合名称后,使用以scanFile.hasNext() 
  17. * 为条件的while循环反复读入三行,然后创建Cylinder对象 
  18. * 3)输出结果必须与下面测试输出的结果完全一致 
  19. */ 
  20. public class CyliderListApp 

  21. public static void main(String[] args) throws FileNotFoundException 

  22. String lable; 
  23. double radius; 
  24. double height; 
  25. Scanner scan0 = new Scanner(System.in); 
  26. Scanner scan1 = null
  27. Scanner inputStream = null
  28.  
  29. ArrayList<Cylinder> cList = new ArrayList<>(10); 
  30. CylinderList cylinderList = null;//new CylinderList(listName, cList) 
  31.  
  32. System.out.print("Enter file name: "); 
  33. String fileName = scan0.nextLine(); // cylinder_0.dat 
  34. scan0.close(); 
  35.  
  36. File file = new File(fileName); 
  37. if(file.exists()) 

  38. inputStream = new Scanner(file); 
  39.  
  40. String listName = inputStream.nextLine(); 
  41. while (inputStream.hasNextLine()) 

  42. String line = inputStream.nextLine(); 
  43. //使用逗号分隔line,例:Small Example, 4.0, 10.0 
  44. scan1 = new Scanner(line); 
  45. scan1.useDelimiter(","); 
  46. if (scan1.hasNext()) 

  47. lable = scan1.next(); 
  48. radius = Double.parseDouble(scan1.next()); 
  49. height = Double.parseDouble(scan1.next()); 
  50. //创建Cylinder对象并加入ArrayList<Cylinder>中 
  51. cList.add(new Cylinder(lable, radius, height)); 

  52. scan1.close(); //就近原则,以免出现空指针 

  53. inputStream.close(); 
  54. //初始化CylinderList对象 
  55. cylinderList = new CylinderList(listName, cList); 
  56. System.out.print(cylinderList.toString()); 
  57. System.out.println(cylinderList.summaryInfo()); 

  58. else 

  59. System.out.println(file.getAbsolutePath()); 



  60.  

运行结果:

技术分享

技术分享

8 Cylinder(三)

-------------------------2016-11-**更新

//wiating for update... 
//
//run
//

9 Cylinder(四)

-------------------------2016-11-**更新

//wiating for update... 
//
//run
//

java-7311练习(下)

标签:ges   radius   use   数字   vol   sim   can   遍历   max   

原文地址:http://www.cnblogs.com/oucbl/p/6079156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!