10.16习题2

Set<String> hs = new HashSet<>();

        hs.add("A");
        hs.add("a");
        hs.add("c");
        hs.add("C");
        hs.add("a");

        for(String s2 : hs)
        {
            System.out.println("hs合集内容:" + s2);
        }

        List<String> all = new ArrayList<>();

        all.add("A");
        all.add("a");
        all.add("c");
        all.add("C");
        all.add("a");

        for(String s3 : all)
        {
            System.out.println("all合集内容:" + s3);
        }
时间: 2024-10-14 00:13:02

10.16习题2的相关文章

10.16习题

for (int a = 0;a <= 100;a++) { al.add("" + a); } al.remove(10); for(int b = 0; b < al.size();b++) { System.out.println("剩余集合内容"+ al.get(b)); } TreeSet<String> cc = new TreeSet<>(); cc.add("a"); cc.add("

10.16习题1

package jihe; import java.util.ArrayList; import java.util.List; public class xitizuoye { public static void main(String[] args) { List<String> al = new ArrayList<>(); for(int i = 1; i < 101; i++) { al.add("" + i); } al.remove(10)

10.15 iptables filter表案例 10.16/10.17/10.18 iptables nat表应用

10.15 iptables filter表案例 10.16/10.17/10.18 iptables nat表应用 扩展 iptables应用在一个网段 http://www.aminglinux.com/bbs/thread-177-1-1.html sant,dnat,masquerade http://www.aminglinux.com/bbs/thread-7255-1-1.html iptables限制syn速率 http://www.aminglinux.com/bbs/thre

10.16输入一个字符串,内有数字和非数字字符,如: a123x456 17960? 302tab5876 将其中连续的数字作为一个整数,依次存放到一数组num中。例如123放在num[0]中,456放在num[1]中……统计共有多少个整数,并输出这些数。

10.16输入一个字符串,内有数字和非数字字符,如: a123x456 17960? 302tab5876 将其中连续的数字作为一个整数,依次存放到一数组num中.例如123放在num[0]中,456放在num[1]中--统计共有多少个整数,并输出这些数. #include <stdio.h> int main(){ void search(char * parr, int * pnum); char arr[100],* parr; int num[30],* pnum; parr=arr;

C# 中2,10,16进制及其ASCII码之间转化

C# 中2,10,16进制及其ASCII码之间转化             --------//C#中各种字符类型的转化,使用于串口通信------------ //字符长度的理解            string s = "我是一个2兵";            int len = s.Length;//6个字符              byte[] sarr = System.Text.Encoding.Default.GetBytes(s);            len =

ERROR: openstack Error finding address for http://10.16.37.215:9292/v1/images: [Errno 32] Broken pipe

Try to set: no_proxy=10.16.37.215 this should help 转自: http://askubuntu.com/questions/575938/error-in-devstack-installing-on-ubuntu

ERROR 2003 (HY000): Can&amp;#39;t connect to MySQL server on &amp;#39;10.16.115.101&amp;#39; (111)

ubuntu安装之后mysql,使用apt-get安装命令,默认为同意只本地访问 [email protected]:~/software# mysql -uroot -p123456 -h10.16.115.101 -P3306 ERROR 2003 (HY000): Can't connect to MySQL server on '10.16.115.101' (111) 默认配置文件: 须要把bind-address凝视掉 重新启动mysql服务 [email protected]:~/

10.16会议记录

时间:2016.10.16晚10:00 人员:项浩哲.孟建文.刘松林 记录人:孟建文 内容: 汇报各自之前对市场上已有的坦克大战类游戏调研分析,说明其中的亮点 头脑风暴,结合调研分析提出对经典90坦克大战的改编想法,包括场景和规则 对Idea进行可行性评判和选择融合,制定项目"坦克大战"的详细游戏规则 对需求文档任务分工

ERROR 2003 (HY000): Can&#39;t connect to MySQL server on &#39;10.16.115.101&#39; (111)

ubuntu安装完mysql,使用apt-get命令安装的,默认是只允许本地访问的 [email protected]:~/software# mysql -uroot -p123456 -h10.16.115.101 -P3306 ERROR 2003 (HY000): Can't connect to MySQL server on '10.16.115.101' (111) 默认配置文件: 需要把bind-address注释掉 重启mysql服务 [email protected]:~/s