example 2
This commit is contained in:
parent
1fccd9bcc0
commit
9d57f84918
|
@ -0,0 +1,15 @@
|
||||||
|
.dub
|
||||||
|
docs.json
|
||||||
|
__dummy.html
|
||||||
|
docs/
|
||||||
|
/example_2
|
||||||
|
example_2.so
|
||||||
|
example_2.dylib
|
||||||
|
example_2.dll
|
||||||
|
example_2.a
|
||||||
|
example_2.lib
|
||||||
|
example_2-test-*
|
||||||
|
*.exe
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
*.lst
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"authors": [
|
||||||
|
"alexander"
|
||||||
|
],
|
||||||
|
"copyright": "Copyright © 2021, alexander",
|
||||||
|
"description": "Числа и выражения",
|
||||||
|
"license": "proprietary",
|
||||||
|
"name": "example_2",
|
||||||
|
"targetPath": "bin"
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
import std.stdio;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
immutable byte inchesPerFoot = 12;
|
||||||
|
immutable cmPerInch = 2.54;
|
||||||
|
|
||||||
|
foreach (feet; 5 .. 7)
|
||||||
|
{
|
||||||
|
foreach (inches; 0 .. inchesPerFoot)
|
||||||
|
{
|
||||||
|
writefln("%d'%d''\t%f'", feet, inches, (feet * inchesPerFoot + inches) * cmPerInch);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue