摘要: package com.example.ks; import android.content.ContentValues; import android.content.Context; import android.content.Intent; import android.database.C 阅读全文
posted @ 2020-11-14 23:31 wsw4 阅读(175) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.co 阅读全文
posted @ 2020-11-12 17:28 wsw4 阅读(123) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/ 阅读全文
posted @ 2020-10-25 20:50 wsw4 阅读(147) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an 阅读全文
posted @ 2020-10-16 18:57 wsw4 阅读(169) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/ 阅读全文
posted @ 2020-10-13 19:09 wsw4 阅读(126) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" 阅读全文
posted @ 2020-09-21 20:53 wsw4 阅读(94) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-08-30 14:48 wsw4 阅读(105) 评论(0) 推荐(0)
摘要: 1.需求说明: 使用HashMap存储多个企鹅信息,然后统一使用Iterator进行遍历 package text; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import jav 阅读全文
posted @ 2020-06-12 16:38 wsw4 阅读(197) 评论(0) 推荐(0)
摘要: 把多个企鹅的信息添加到集合中查看企鹅的数量及所有企鹅的信息删除集合中部分企鹅的元素判断集合中是否包含指定企鹅运行效果如下: package text; import java.util.ArrayList; import java.util.Scanner; public class Jihe { 阅读全文
posted @ 2020-06-02 17:54 wsw4 阅读(173) 评论(0) 推荐(0)
摘要: 1.编写一个随机生成 10个 0(包括) 到 100 之间的随机正整数。 package text; import java.util.Random; public class Ran { public static void main(String[] args) { Random r=new R 阅读全文
posted @ 2020-05-28 12:27 wsw4 阅读(141) 评论(0) 推荐(0)