c-style line comments in zad4

This commit is contained in:
Michał Krzysztof Feiler 2019-01-24 20:27:57 +01:00
parent f6225b3edd
commit 98e0f88d39
No known key found for this signature in database
GPG Key ID: E35C2D7C2C6AC724
1 changed files with 2 additions and 2 deletions

View File

@ -17,12 +17,12 @@ static long long unsigned n;
int next()
{
// long double p = x;
/* long double p = x; */
n++;
silnia *= n;
long double inv_silnia = ((long double)1) / silnia;
x += inv_silnia;
// return fabsl(x - p) >= eps;
/* return fabsl(x - p) >= eps; */
return inv_silnia >= eps;
}