Kiểm tra số nguyên tố trên C# sử dụng Hàm


public static bool KiemTraSNT(int n)
        {
            int dem = 0;
            if (n < 2)
            {
                return false;
            }
            else
            {
                for (int i = 2; i <= n - 1; i++)
                {
                    if (n % i == 0)
                    {
                        dem = dem + 1;
                    }
                }//gia tri bien dem=?
                if (dem == 0)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
        }

Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 nhận xét:

Đăng nhận xét