请编写函数fun,其功能是判断一个整数n是否为素数,如果是素数,则返回1,否则返回0.
问题描述:
请编写函数fun,其功能是判断一个整数n是否为素数,如果是素数,则返回1,否则返回0.
答
#include
int f(int n)
{
int i,k;
for(i=2,k=0;i