mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 09:13:02 +02:00
9 lines
115 B
Mathematica
9 lines
115 B
Mathematica
|
|
function macheps = Task1()
|
||
|
|
macheps = 1;
|
||
|
|
while 1 + (macheps/2)>1
|
||
|
|
macheps = macheps/2;
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
|