码迷,mamicode.com
首页 > 其他好文 > 详细

C#常见笔试题

时间:2014-05-29 12:11:54      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   tar   

1.产生20个不同的两位整数的随机数,并且对它们进行由小到大的排序。特别提醒:程序要自动生成20个不同的整数,而且这些整数必须是两位的,如:3不是两位整数,58是两位整数

bubuko.com,布布扣View Code
            List<int> numbers= new List<int>();
            Random rnd = new Random();
            int i = 0;
            while (i < 20)
            {
                int s = rnd.Next(10, 100); //注意s的值大于等于10小于100
                if (!numbers.Contains(s))
                {
                    numbers.Add(s);
                    i++;
                }
            }
            foreach (int n in numbers)
            {
                Console.WriteLine(n);
            }

2.求质数

①.能被2,3,5,7整除的数都不是质数

bubuko.com,布布扣View Code
            List<int> Primes = new List<int>();
            Primes.Add(2);
            Primes.Add(3);
            Primes.Add(5);
            Primes.Add(7);
            for (int a = 2; a < 100; a++)
            {
                if (a % 2 != 0 && a % 3 != 0 && a % 5 != 0 && a % 7 != 0)
                {
                    Primes.Add(a);
                }
            }

                foreach (int a in Primes)
                {
                    Console.WriteLine(a);
                }
            Console.ReadKey();
          
        }

 

C#常见笔试题,布布扣,bubuko.com

C#常见笔试题

标签:c   style   class   blog   code   tar   

原文地址:http://www.cnblogs.com/huangll/p/2751006.html

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