Search:

Type: Posts; User: Mr.777

Search: Search took 0.10 seconds.

  1. Re: Need help correcting my code for calculating sexy prime pairs

    I will recommend you to take a pencil and a paper and draw, how will you do it manually.
    Write all the steps and then code them.
  2. Re: Need help correcting my code for calculating sexy prime pairs

    for (int e = 2; e <= 223; e++)
    {
    if (primes[e])
    {
    for (int f = e; f <= 223; f++)
    {
    int g = (e * f);
    ...
Results 1 to 2 of 2