24/05/2018, 22:19

Ví dụ về một chương trình có sử dụng chương trình con

Xây dựng chương trình tính giá trị của biểu thức sau: S = ...

Xây dựng chương trình tính giá trị của biểu thức sau:

S = x + x 2 2 ! + x 3 3 ! + . . . x n n ! size 12{S=x+ { {x rSup { size 8{2} } } over {2!} } + { {x rSup { size 8{3} } } over {3!} } + "." "." "." { {x rSup { size 8{n} } } over {n!} } } {}

-----------------------------------------------------------------------------------------------

using System;

class VD

{

static double x;

static int n;

static void Nhap()

{

Console.Write("Nhap x=");x=double.Parse(Console.ReadLine());

Console.Write("Nhap n=");n=int.Parse(Console.ReadLine());

}

static double Mu(double x,int n)

{

double s;

int i;

for(s=1,i=1;i<=n;++i)

s=s*x;

return s;

}

static int GiaiThua(int n)

{

int s,i;

for(i=1,s=1;i<=n;++i)

s=s*i;

return s;

}

static void Main()

{

double s=0;

int i;

Nhap();

for(i=1;i<=n;++i)

s=s+Mu(x,i)/GiaiThua(i);

Console.Write("S={0:N2}",s);

Console.ReadKey();

}

}

0