BT vòng lặp đơn giản: Viết chuong trình nhập 1 số n (n>0) in ra số chẵn tới 1 tới n, in ra số lẻ từ 1 tới n





BT vòng lặp đơn giản: Viết chuong trình nhập 1 số n (n>0) in ra số chẵn tới n
b. In ra số lẻ tới n

Giải
namespace InSoChanLe
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = 0;
            Console.WriteLine("Nhap so n=");
            n = int.Parse(Console.ReadLine());
            Console.WriteLine("So chan la:");
            InSoChan(n);
            Console.WriteLine("So le la:");
            InSoLe(n);
            Console.ReadLine();
        }
        static void InSoChan(int so1)
        {
            for (int i = 1; i <= so1; i++)
            {
                if (i%2==0)
                {
                    Console.WriteLine(i);
                }
            }
        }
        static void InSoLe(int so2)
        {
            for (int i = 1; i <= so2; i++)
            {
                if (i % 2 == 1)
                {
                    Console.WriteLine(i);
                }
            }
        }
    }
}
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