• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#l练习(用方法来实现:①判断一个给定的整数是否为“质数”。②计算1-100之间的所有 ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

用方法来实现:判断一个给定的整数是否为“质数”

代码实现:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

//用方法来实现:判断一个给定的整数是否为“质数”
namespace ConsoleApplication8
{
    class Fa
    {
        public static void prime(int a)
        {
            int c = 0;
            for (int i = 2; i <= Math.Sqrt(a) + 1; i++)
                if (a % i == 0)
                {
                    c = 1;
                    Console.WriteLine("该数不是质数");
                    break;
                }

            if (c == 0)
            {
                Console.WriteLine("该数是质数");

            }
        }
    }

    class Program
    {
        static void Main(string[] args)
        { int a;
            Console.WriteLine("请输入一个数");
             a=Convert.ToInt32(Console.ReadLine());
              Fa.prime(a);
              Console.ReadKey();
        }
    }
}

实现结果:

计算1-100之间的所有质数(素数)的和。

代码实现:

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication8
{
    class Fa
    {
        public static void prime()
        {      
          
            int sum=0;
            for(int j=2;j<=100;j++)//遍历1-100的数
            {  int c = 0;
                for (int i = 2; i < Math.Sqrt(j) + 1; i++)//判断是否为质数
                if (j % i == 0)
                {
                    c = 1;
                    break;
                }

            if (c == 0)//标记数
            {
                Console.WriteLine("{0}  ",j);
                sum += j;
            }

 

            }
            Console.WriteLine("1-100的素数和为{0}", sum);

        }
    }
    class Program
    {
        static void Main(string[] args)
        { 
              Fa.prime();
              Console.ReadKey();//外部调用方法
        }
    }
}

 

实现结果:

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#linq的学习及使用发布时间:2022-07-14
下一篇:
[objective-c]关于KVC--KVO--KVB发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap