博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java基础知识强化之IO流笔记70:Properties练习之 如何让猜数字小游戏只能玩5次的案例...
阅读量:5052 次
发布时间:2019-06-12

本文共 2429 字,大约阅读时间需要 8 分钟。

1. 使用Properties完成猜数字小游戏只能玩5次的案例:

2. 代码实现:

(1)猜数字游戏GuessNumber

1 package cn.itcast_08; 2  3 import java.util.Scanner; 4  5 /** 6  * 这是猜数字小游戏 7  *  8  * @author 风清扬 9  * @version V1.110  * 11  */12 public class GuessNumber {13     private GuessNumber() {14     }15 16     public static void start() {17         // 产生一个随机数18         int number = (int) (Math.random() * 100) + 1;19 20         // 定义一个统计变量21         int count = 0;22 23         while (true) {24             // 键盘录入一个数据25             Scanner sc = new Scanner(System.in);26             System.out.println("请输入数据(1-100):");27             int guessNumber = sc.nextInt();28 29             count++;30 31             // 判断32             if (guessNumber > number) {33                 System.out.println("你猜的数据" + guessNumber + "大了");34             } else if (guessNumber < number) {35                 System.out.println("你猜的数据" + guessNumber + "小了");36             } else {37                 System.out.println("恭喜你," + count + "次就猜中了");38                 break;39             }40         }41     }42 }

 

(2)测试类PropertiesTest2,如下:

1 package cn.itcast_08; 2  3 import java.io.FileReader; 4 import java.io.FileWriter; 5 import java.io.IOException; 6 import java.io.Reader; 7 import java.io.Writer; 8 import java.util.Properties; 9 10 /*11  * 我有一个猜数字小游戏的程序,请写一个程序实现在测试类中只能用5次,超过5次提示:游戏试玩已结束,请付费。12  */13 public class PropertiesTest2 {14     public static void main(String[] args) throws IOException {15         // 读取某个地方的数据,如果次数不大于5,可以继续玩。否则就提示"游戏试玩已结束,请付费。"16         // 创建一个文件17         // File file = new File("count.txt");18         // if (!file.exists()) {19         // file.createNewFile();20         // }21 22         // 把数据加载到集合中23         Properties prop = new Properties();24         Reader r = new FileReader("count.txt");25         prop.load(r);26         r.close();27 28         // 我自己的程序,我当然知道里面的键是谁29         String value = prop.getProperty("count");30         int number = Integer.parseInt(value);31 32         if (number > 5) {33             System.out.println("游戏试玩已结束,请付费。");34             System.exit(0);35         } else {36             number++;37             prop.setProperty("count", String.valueOf(number));38             Writer w = new FileWriter("count.txt");39             prop.store(w, null);40             w.close();41 42             GuessNumber.start();43         }44     }45 }

运行5次之后,就会出现,如下的结果:

 

转载于:https://www.cnblogs.com/hebao0514/p/4877624.html

你可能感兴趣的文章
pytho logging
查看>>
看看 Delphi XE2 为 VCL 提供的 14 种样式
查看>>
Python内置函数(29)——help
查看>>
机器学习系列-tensorflow-01-急切执行API
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
对Feature的操作插入添加删除
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
WCF 配置文件
查看>>
oracle导出/导入 expdp/impdp
查看>>
2018.11.15 Nginx服务器的使用
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
数据结构之查找算法总结笔记
查看>>
Android TextView加上阴影效果
查看>>
C#:System.Array简单使用
查看>>