练习题目
小小小小猴
Java迷
展开
-
模拟用户上传头像功能,假设所有的用户头像都应该上传到:项目的lib文件夹中
题目:模拟用户上传头像功能,假设所有的用户头像都应该上传到:项目的lib文件夹中 //需求:模拟用户上传头像功能,假设所有的用户头像都应该上传到:项目的lib文件夹中 public class UpPicture { public static void main(String[] args) throws IOException { //1.定义一个方法,用来获取要上传的用户头像的路径 getPath File path = getpath();原创 2021-04-23 23:57:01 · 228 阅读 · 4 评论 -
发红包
成员类: public class User { private String name;//用户姓名 private int money;//账户余额 public User() { } public User(String name, int money) { this.name = name; this.money = money; } public String getName() { r.原创 2021-04-04 12:26:59 · 104 阅读 · 0 评论 -
猜数字游戏
题目:猜数游戏 计算机产生随机数,猜中即胜,猜不中,提示是大了还是小了,继续猜,直至猜到。 public class Test { public static void main(String[] args) { Random r = new Random(); int i = r.nextInt(100); System.out.println("请输入你猜的数字:"); while (true){ Scann原创 2021-04-04 12:11:15 · 98 阅读 · 0 评论