int sushu( int p);
{
int j = 0;
for (j = 2; j <p; j++)
{
if (p % j == 0)
return 0;
}
return 1;
}
从j<p开始的p就显示未声明标识符然后不能运行
查不到解决方案
int sushu( int p);
{
int j = 0;
for (j = 2; j <p; j++)
{
if (p % j == 0)
return 0;
}
return 1;
}
从j<p开始的p就显示未声明标识符然后不能运行
查不到解决方案
int sushu( int p);
最后的分号删掉