码迷,mamicode.com
首页 > 编程语言 > 详细

取出数组中不相同的数据

时间:2014-11-21 12:35:44      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   sp   for   strong   数据   on   

 

  取出数组a中数组b没有的数据:结果是1,3

 

            int[] a = { 1, 2, 3, 4 };
            int[] b = { 2, 4 };
            string aa = "";
            for (int i = 0; i < a.Length; i++)
            {
                for (int j = 0; j < b.Length; j++)
                {
                    if (j == b.Length - 1 && b[j] != a[i])
                    {
                        aa += a[i].ToString() + ",";
                    }
                    else if (b[j] == a[i])
                    {
                        break;
                    }
                }
            }

            lbl.Text = aa;

 

取出数组中不相同的数据

标签:style   blog   color   os   sp   for   strong   数据   on   

原文地址:http://www.cnblogs.com/xiaoqi742709106/p/4112433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!