Created
August 21, 2021 19:46
-
-
Save tonetheman/db1c3d3cc8a63a0498ed3b16514672e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program TestMe; | |
var | |
i : Longint; | |
x : Longint = 0; | |
y : Real = 0; | |
begin | |
for i:=0 to 116000 do | |
begin | |
x := i; | |
y := (x*4)/2.71; | |
end; | |
writeln(x,y); | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment