Tính tổng dùng hàm trong C#



namespace BaiHam
{
    class Program
    {
     
        static void Main(string[] args)
        {
            int x = 0;
            int chay = 0;
            Console.Write("Ban nhap vao so x=");
            x = int.Parse(Console.ReadLine());
           do
            {
                chay=chay+1;
            } while (TinhTong(chay)<x);
           Console.WriteLine("So thoa man la:{0}",chay);
            Console.ReadLine();
        }
        public static int TinhTong(int n)
        {
            int s = 0;
            for (int i = 1; i <= n; i++)
            {
                s = s + i;
            }
            return s;
        }
    }
}
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