Tìm kiếm

1 vài code dùng for đơn giản - C#

CODE

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _1_so_vi_du_SD_for
{
    class Program
    {
        static void Main(string[] args)
        {
            #region Tính tổng S=1/2+1/3+1/4+....+1/n
        //lap: // bắt đầu loop 
        //    Console.WriteLine("Tinh S=1/2+1/3+1/4+....+1/n ");
        //    Console.Write("Moi ban nhap n = ");
        //    int n = int.Parse(Console.ReadLine());
        //    double s = 0;
        //    for (int i = 2; i <= n; i++)
        //    {
        //        s += 1 / Convert.ToDouble(i);
        //    }
        //    Console.WriteLine("Tong S = {0}", s);
        //    goto lap;
        //    Console.ReadLine();
            #endregion
            #region Tính tổng S= 1/2+ 2/3+3/4+....+n/(n+1)
        //lap: // bắt đầu loop 
        //    Console.WriteLine("Tinh S=1/2+2/3+3/4+....+n/(n+1) ");
        //    Console.Write("Moi ban nhap n = ");
        //    int n = int.Parse(Console.ReadLine());
        //    double s = 0;
        //    for (int i = 1; i <= n; i++)
        //    {
        //        s += i / Convert.ToDouble(i + 1);
        //    }
        //    Console.WriteLine("Tong S = {0}", s);
        //    goto lap;
        //    Console.ReadLine();
            #endregion
            #region Tính Tổng S = 1/2 + 3/4 + 5/6 +...+(2n+1)/(2n+2)
        lap: // bắt đầu loop 
            Console.WriteLine("Tinh S=1/2 + 3/4 + 5/6+....+(2n+1)/(2n+2) ");
            Console.Write("Moi ban nhap n = ");
            int n = int.Parse(Console.ReadLine());
            double s = 0;
            for (int i = 0; i <= n; i++)
            {
                s += (2*i+1) / Convert.ToDouble(2*i + 2);
            }
            Console.WriteLine("Tong S = {0}\n\n", s);
            goto lap;
            Console.ReadLine();
            #endregion
        }
    }
}



Read Users' Comments (0)

0 Response to "1 vài code dùng for đơn giản - C#"

Đăng nhận xét

Support

Liên hệ DMTuan-Uneti
Mọi thông tin góp ý các bạn liên hệ với mình ! Mail:
  1. manhtuan.leo@gmail.com
  2. manhtuan.itvp@gmail.com

Y!M: manhtuan.it92