0

下面是我的代码,我无法让它按应有的方式工作。

我必须找到素数(这很好用)。然后,如果素数是 7 和 3
63 = 7 * 3 * 37 = 7),则该数字是神奇的,如果它包含任何其他(98 = 7 * 7 * 242 = 7 * 3 * 2)则不是。

我有点卡在这里:

if (b != 7 && b != 3)

                        Console.WriteLine(k);
 else
                        Console.WriteLine(j);

我不知道如何解决它。这是整个代码:

         string k="isnt magical";
        string j = "is magical";
        int a, b;
        Console.WriteLine("Vnesite svoje stevilo: ");
        a = Convert.ToInt32(Console.ReadLine());
        for (b = 2; a > 1; b++)/
            if (a % b == 0)
            {

                while (a % b == 0)
                {
                    a /= b;

                }


                if (b != 7 && b != 3)
                    Console.WriteLine(k);
                else
                    Console.WriteLine(j);
       }
4

1 回答 1

0

您正在打印"isnt magical""is magical"针对每个因素。您的代码应如下所示:

string k = "isnt magical";
string j = "is magical";
int a, b;
Console.WriteLine("Vnesite svoje stevilo: ");
a = Convert.ToInt32(Console.ReadLine());

var allMagical = true;
for(b = 2; a > 1; b++) if(a % b == 0)
{
    while(a % b == 0) a /= b;
    if(b != 7 && b != 3) allMagical = false;
}

Console.WriteLine(allMagical ? j : k);
于 2013-05-19T11:42:41.840 回答