Nhập vào số n, xuất bảng cửu chương của n



Nhập vào số n, xuất bảng cửu chương của n
Giải
namespace InBangCuuChuong
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = 0;
            Console.Write("Ban nhap so=");
            n = int.Parse(Console.ReadLine());
            for (int i = 1; i <= 10; i++)
            {
                Console.WriteLine("{0} x {1} = {2}",n,i,n*i);
            }
            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: