You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
long double z = 0.179;
|
|
int i = 0;
|
|
while(z > 1e-20) {
|
|
z *= 0.99;
|
|
i++;
|
|
}
|
|
|
|
printf("%d %.1fs\n", i, i / 24.);
|
|
return 0;
|
|
}
|