scratch第五期链接
这是本系列的最后一章,当然,元宵节更新合集。
如果大家喜欢,我就有动力更新下去。
链接老规矩,免费送各位:
链接:https://pan.baidu.com/s/1KljPOBl-OFMdxui2egcp_A
提取码:n50c

再给各位送出质数判断的代码:
//#include <iostream>
#include <iostream>
using namespace std;
int main()
{
int n,m,t,i(0);
double s;
for(n=2;n<100;n++)
{
s=1;
for(m=2;m<n;m++)
{
t=n%m;
s=s*t;
}
if(s!=0)
{
cout<<n<<'\t';
i++;
if(i%8==0) cout<<endl;
}
}
}
大家静待元宵节(2.15)更新的精彩视频吧!
本文就到这里。