I found it today, right ??? Because precision is not considered
Int main (void) <br/>{< br/> int I, k, n; </P> <p> printf ("minimum number of consecutive N (1 ~ (100 )? "); <Br/> scanf (" % d ", & N); </P> <p> I = 2; <br/> while (1) <br/> {<br/> if (1 = N) <br/> {<br/> printf ("the smallest continuous sum is 4/N "); <br/> break; <br/>}< br/> for (k = I; k <I + N; k ++) <br/> If (K % 2 & isprime (k) <br/> break; <br/> // note that this isprime (k) can be added or not .. If this parameter is added, <br/> // a continuous even number is not allowed. If this parameter is not added, for example, 8. 9 is the smallest two consecutive units. <br/> // However, 10 is also the sum. So how do you read this question, in my <SPAN class = 'wp _ keywordlink '> Code </span>, I added <br/> If (k = I + N & isprime (k )) <br/>{< br/> printf ("the smallest continuous % d combination is % d ~ % D/N ", N, I, K-1); <br/> break; <br/>}< br/> I + = 2; <br/>}< br/> return 0; <br/>}