这个求素数的程序怎么改下就正确了,我初学 C++,望大神指教!!!
#include<iostream>#include<iomanip>
#include<cmath>
#include<stdio.h>
using namespace std;
int main()
{
int x,y,z;
for(x=0;x<=20;x++)
{
for(y=0;y<=33;y++)
{
for(z=0;z<=100;z++)
{
if((x*5+y*3+z/3==100)&&(x+y+z==100)&&(z%3==0))
cout<<"cock="<<x<<",hen="<<y<<",chicken="<<z<<endl;
}
}
}
return 0;
}