diff options
Diffstat (limited to 'double2int/test/Program.cs')
-rw-r--r-- | double2int/test/Program.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/double2int/test/Program.cs b/double2int/test/Program.cs new file mode 100644 index 0000000..d0224e7 --- /dev/null +++ b/double2int/test/Program.cs @@ -0,0 +1,5 @@ +double d1 = 9.55; +int i1 = (int)d1; + +Console.WriteLine(d1); +Console.WriteLine(i1); \ No newline at end of file |