首页 > 代码库 > 需求:有一个猜数字小游戏,请写一个程序实现在测试类中只能使用5次,超过5次提示:游戏试玩结束,请付费。
需求:有一个猜数字小游戏,请写一个程序实现在测试类中只能使用5次,超过5次提示:游戏试玩结束,请付费。
package cn.idcast4;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Reader;
import java.io.Writer;
import java.util.Properties;
/*
* 需求:有一个猜数字小游戏,请写一个程序实现在测试类中只能使用5次,
* 超过5次提示:游戏试玩结束,请付费。
*/
public class propertiesdemo5 {
public static void main(String[] args) throws IOException {
Properties pp = new Properties();
Reader r = new FileReader("count.txt");
pp.load(r);
r.close();
String value = http://www.mamicode.com/pp.getProperty("count"); //注意 这里是的方法是获取元素
int number = Integer.valueOf(value); //把值转换成成int类型
if (number > 5) {
System.out.println("游戏试玩结束,请付费");
System.exit(0);
} else {
number++;
pp.setProperty("count", String.valueOf(number)); //由于是properties集合,只能用字符串,所以要转换成字符串
Writer w = new FileWriter("count.txt");
pp.store(w, null);
w.close();
GuessNumber.start();
}
}
}
需求:有一个猜数字小游戏,请写一个程序实现在测试类中只能使用5次,超过5次提示:游戏试玩结束,请付费。