----------------解决方案--------------------------------------------------------
----------------解决方案--------------------------------------------------------
意思是说,从键盘输入一个数(比如5吧),然后回车,结果就会显示5 is the temp.
----------------解决方案--------------------------------------------------------
素数是什么意思?
返回1、返回0是什么意思啊?
我输“5”显示 is not the temp
输入“25”显示 is the temp
----------------解决方案--------------------------------------------------------
素数的意思 是说:这个数只能被1和它本身整除。
你看25吧,除了1和25以外还有5可以嘛。所以它不是素数了。
----------------解决方案--------------------------------------------------------
以下是引用pinglideyu在2007-3-19 10:21:08的发言:
这是我的看法。
#include <stdio.h>
#include <math.h>
void main()
{
int i,n;
int temp=0;
printf("Enter the number:");
scanf("%d",&n);
for (i=2;i<(int) sqrt(n);i++)
{
if (n%i==0)
temp=0;
else
temp=1;
}
if (temp)
printf("%d is the temp!\n",n);
else
printf("%d is not the temp!\n",n);
}
这里我弄错了,应该是if (!temp)
----------------解决方案--------------------------------------------------------
以下是引用PcrazyC在2007-3-19 12:20:20的发言:
是这样的吗?我觉得这样效率还要高点
你知道sqrt函数中怎么运行的吗?可能比你想像的还要复杂!
我承认sqrt函数的效率并不高,但是请你注意,我在程序中只用了1次这个函数,牺牲的时间是有限且固定的!
可是如果乘法在循环体,那么消耗的时间是根据N增长的!
你自己去想想哪个更划算!
----------------解决方案--------------------------------------------------------
----------------解决方案--------------------------------------------------------
LZ,蛮努力的.....
----------------解决方案--------------------------------------------------------