Tìm kiếm

Tính n! - C# (for (; ; ;))


CODE

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

namespace giaithua
{
    class Program
    {
        static void Main(string[] args)
        {
            // học vòng lặp for (...;..;...)
            // tinh n! 
            Console.WriteLine("---CHUONG TRINH TINH n!---\n\n");
            Console.Write("Moi ban nhap n = ");
            int n = int.Parse(Console.ReadLine());
            int s = 1;
            for (int i = 1; i <= n; i++) // loop 
            {
                s *= i; 
            }
            Console.WriteLine("n! = {0}", s);
            Console.ReadLine();
        }
    }
}



Read Users' Comments (0)

0 Response to "Tính n! - C# (for (; ; ;))"

Đă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