当前位置:   article > 正文

蓝桥杯备战21.哥德巴赫猜想

蓝桥杯备战21.哥德巴赫猜想

P1304 哥德巴赫猜想 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. struct student
  4. {
  5. string name;
  6. int c,m,e,s;
  7. };
  8. bool check(int n)
  9. {
  10. for(int i=2;i*i<=n;i++)
  11. {
  12. if(n%i==0)return 0;
  13. }
  14. return 1;
  15. }
  16. void out(int n)
  17. {
  18. for(int i=2;i<=n;i++)
  19. {
  20. if(check(i)&&check(n-i))
  21. {
  22. cout<<n<<'='<<i<<'+'<<n-i<<endl;
  23. break;
  24. }
  25. }
  26. }
  27. int main()
  28. {
  29. int n;cin>>n;int cnt=0;
  30. for(int i=4;i<=n;i+=2)
  31. {
  32. out(i);
  33. }
  34. return 0;
  35. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/620848
推荐阅读
相关标签
  

闽ICP备14008679号