博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#打印0到100的素数
阅读量:5066 次
发布时间:2019-06-12

本文共 722 字,大约阅读时间需要 2 分钟。

 

 

 

static void Main(string[] args)        {              //输出1-100的素数            bool res;            int count = 0;            for (int i = 1; i < 100; i++)            {                res = true;                for (int j = 2; j < i; j++)                {                    count++;                    res = i % j == 0 ? res = false : res = true;                      break;                                       }                if (res)                {                    Console.WriteLine(i);                }                        }            Console.WriteLine("循环了" + count);            Console.ReadKey();        }

 

posted on
2018-12-14 12:12 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/tianranhui/p/10118719.html

你可能感兴趣的文章
新手Python第一天(接触)
查看>>
iOS中ARC内部原理
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>
你不得不了解的应用容器引擎---Docker
查看>>
easyui datagrid 弹出页面会出现两个上下滚动条处理办法!
查看>>
迭代器和生成器
查看>>
codevs 1080 线段树练习
查看>>
JS模块化库seajs体验
查看>>
Android内核sysfs中switch类使用实例
查看>>
POJ2288 Islands and Bridges(TSP:状压DP)
查看>>
[No0000195]NoSQL还是SQL?这一篇讲清楚
查看>>
IOS开发UI篇--UITableView的自定义布局==xib布局
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
Python-Web框架的本质
查看>>
Unrecognized Windows Sockets error: 0: JVM_Bind 异常解决办法
查看>>
QML学习笔记之一
查看>>
7NiuYun云存储UploadPicture
查看>>
Window 的引导过程
查看>>
python与 Ajax跨域请求
查看>>