该文被密码保护。 阅读全文
posted @ 2022-10-12 20:17 LuMinarY- 阅读(1) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-12 20:10 LuMinarY- 阅读(1) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-12 19:27 LuMinarY- 阅读(8) 评论(0) 推荐(0)
摘要: 随机数写法 int x=(int) (Math.random()*6+1); 输入 Scanner sc = new Scanner(System.in); int id = sc.nextInt(); String name = new String(); name=sc.next(); //不读 阅读全文
posted @ 2022-10-10 20:58 LuMinarY- 阅读(27) 评论(0) 推荐(0)
摘要: #include<iostream> #include<string> using namespace std; struct Student{ string name; //姓名 string id; //学号 double score; //成绩 struct Student *next; }; 阅读全文
posted @ 2022-10-09 15:33 LuMinarY- 阅读(148) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-05 21:02 LuMinarY- 阅读(4) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-04 13:40 LuMinarY- 阅读(5) 评论(0) 推荐(0)
摘要: #include<iostream> #include<string> using namespace std; #define Max 10000 struct Student{ string name; //姓名 string id; //学号 double score; //成绩 }; str 阅读全文
posted @ 2022-10-04 10:26 LuMinarY- 阅读(244) 评论(0) 推荐(0)