日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

1039: 二哥的困惑 Ⅱ

發布時間:2024/9/3 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 1039: 二哥的困惑 Ⅱ 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1039: 二哥的困惑 Ⅱ
Time Limit: 1 Sec Memory Limit: 128 MB
[Submit][Status][Web Board]
Description

In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard Euler in which he made the following conjecture:

Every even number greater than 4 can be
written as the sum of two odd prime numbers.

For example:

8 = 3 + 5. Both 3 and 5 are odd prime numbers.
20 = 3 + 17 = 7 + 13.
42 = 5 + 37 = 11 + 31 = 13 + 29 = 19 + 23.

Today it is still unproven whether the conjecture is right. (Oh wait, I have the proof of course, but it is too long to write it on the margin of this page.)
Anyway, your task is now to verify Goldbach’s conjecture for all even numbers less than a million.

Input

The input will contain one or more test cases.
Each test case consists of one even integer n with 6 <= n < 1000000.
Input will be terminated by a value of 0 for n.

Output

For each test case, print one line of the form n = a + b, where a and b are odd primes. Numbers and operators should be separated by exactly one blank like in the sample output below. If there is more than one pair of odd primes adding up to n, choose the pair where the difference b - a is maximized. If there is no such pair, print a line saying “Goldbach’s conjecture is wrong.”

Sample Input

8
20
42
0

Sample Output

8 = 3 + 5
20 = 3 + 17
42 = 5 + 37

HINT

Source
/*
很久之前做的,素數篩法歸檔~
*/

#include<stdio.h> #define max1 1000005 int b[max1]= {0}; int main() {int n;for(int j = 2; j< max1; j++){if(b[j]!=1)for(int i = 2 * j; i< max1; i+=j){b[i]=1;}}while(~scanf("%d",&n)&&n!=0){int flag=0;for(int j=2; j< max1; j++){if(b[j]!=1&&b[n-j]!=1){printf("%d = %d + %d\n",n,j,n-j);flag=1;break;}}if(flag==0) printf("Goldbach's conjecture is wrong.\n");}return 0; }

總結

以上是生活随笔為你收集整理的1039: 二哥的困惑 Ⅱ的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。