c语言之打印素数

素数是只能被1和自身整除的正整数,也称质数。例如,2、3、5、7、11、13等都是素数,而4、6、8等就不是素数。素数在数论中有着重要的地位,许多密码和加密算法都建立在素数理论的基础上。

#include
int issushu(int n)//判断素数
{
	int j = 0;
	for (j = 2; j < n; j++)
	{
		if (n % j == 0)
			return 0;
	}
	return 1;
}
int main()
{	//10到200之间的素数
	int i = 0;
	int count = 0;
	for (i = 10; i <= 200; i++)
	{
		if (issushu(i) == 1) {
			count++;
			printf("%d ", i);
		}
	}
	printf("有%d个素数", count);
	return 0;
}

你可能感兴趣的:(算法,数据结构,c语言)