Bài số 4


4. Viết chương trình nhập vào 1 số nguyên n, xuất ra màn hình cho biết số n có phải là số nguyên tố hay không.


namespace Bai_so_4
{
    class Program
    {
        static void Main(string[] args)
        {
            int n=0,dem=0;
            Console.Write("Ban nhap so n=");
            n = int.Parse(Console.ReadLine());
            if (n<2)
            {
                Console.WriteLine("{0} khong phai so nguyen to",n);
            }
            else
            {
                for (int i = 2; i <= n-1; i++)
                {
                    if (n%i==0)
                    {
                        dem = dem + 1;
                    }
                }//gia tri bien dem=?
                if (dem == 0)
                {
                    Console.WriteLine("{0} la so nguyen to", n);
                }
                else
                {
                    Console.WriteLine("{0} khong la so nguyen to", n);
                }
            }
            Console.ReadLine();
        }
    }
}
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