判断2011是否为 质数 要文字语言算法!

判断2011是否为 质数 要文字语言算法!

题目
判断2011是否为 质数 要文字语言算法!
答案
算法很简单.执行一个循环,让2011除以从1到2011开方(根号2011)的所有数,若中间又一次能整除,则说明2011不是质数,否则2011是质数.
C语言代码
#include
#include
int ss();
void main()
{
if(ss())
printf("2011 is a Prime number");
else
printf("2011 is not a Prime number");
getch();
}
int ss()
{
int n=2011;
int m=sqart(n);
for(int i=1;i
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
最新试题
热门考点

超级试练试题库

© 2017-2019 超级试练试题库,All Rights Reserved.