WUT_Computer_Science/ENUME/references/ENUME_Project1/TASK1.m

9 lines
115 B
Mathematica
Raw Normal View History

2021-11-10 13:12:25 +01:00
function macheps = Task1()
macheps = 1;
while 1 + (macheps/2)>1
macheps = macheps/2;
end
end