Bài 3


3. Cho tổng sau: S=1+2+3+...+n, viết chương trình cho người dùng nhập vào 1 số x(x>0) sau đó xuất ra số n với điều kiện thỏa mãn để S>=x

namespace Bai_so3
{
    class Program
    {
        static void Main(string[] args)
        {
            int tong = 0, n = 0, x = 0;
            Console.Write("Ban nhap vao x=");
            x = int.Parse(Console.ReadLine());//7
            do
            {
                //S=1+2+3+...+n;
                n = n + 1;//1 2 3 4
                tong = tong + n;//1 3 6 10
             
            }
            while (tong < x);
            Console.WriteLine("n la {0}",n);
            Console.WriteLine("Luc nay tong la {0}", tong);
            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

1 nhận xét: