mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-27 01:36:24 +00:00
11 lines
295 B
Plaintext
11 lines
295 B
Plaintext
double arithmetic
|
|
10.500000 + 1.250000 = 11.750000
|
|
10.500000 - 1.250000 = 9.250000
|
|
10.500000 * 1.250000 = 13.125000
|
|
10.500000 / 1.250000 = 8.400000
|
|
float arithmetic
|
|
10.500000 + 1.250000 = 11.750000
|
|
10.500000 - 1.250000 = 9.250000
|
|
10.500000 * 1.250000 = 13.125000
|
|
10.500000 / 1.250000 = 8.400000
|