diff options
Diffstat (limited to '7a/6.8.txt')
| -rw-r--r-- | 7a/6.8.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/7a/6.8.txt b/7a/6.8.txt new file mode 100644 index 0000000..dd7824b --- /dev/null +++ b/7a/6.8.txt @@ -0,0 +1,9 @@ +1. 3 = sqrt(9.0); +2. NaN = sqrt(-9.0); +3. 32 = pow(2.0, 5) +4. 0.25 = pow(2.0, -2); +5. 6 = ciel(5.1); +6. 6 = ciel(5.9); +7. 5 = floor(5.1); +8. 5 = floor(5.9); +9. 4 = sqrt( pow(abs(-2), 4));
\ No newline at end of file |