suphukaman
New member
- Xu
- 0
Bài làm của mình:
-------------
#include<iostream>
#include<math.h>
using namespace std;
void main ()
{
int n = 1;
float gt, e = 1;
double x = pow(10,-6);
do
{
gt = 1;
for (int i = 1 ; i <= n ; i++) gt = gt*i;
e = e + (1/gt);
n++;
}
while( (1/gt) > x );
cout<<e<<"\n";
}
--------------------------
Sai chỗ nào ạ ?
-------------
#include<iostream>
#include<math.h>
using namespace std;
void main ()
{
int n = 1;
float gt, e = 1;
double x = pow(10,-6);
do
{
gt = 1;
for (int i = 1 ; i <= n ; i++) gt = gt*i;
e = e + (1/gt);
n++;
}
while( (1/gt) > x );
cout<<e<<"\n";
}
--------------------------
Sai chỗ nào ạ ?