Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
int-float C# division
// C# division using System; namespace Rextester { public class Program { public static void Main(string[] args) { int two_int = 2; int three_int = 3; float two_float = 2.0f; float three_float = 3.0f; // int / int Console.WriteLine(two_int / three_int); // int / float Console.WriteLine(two_int / three_float); // float / int Console.WriteLine(two_float / three_int); // float / float Console.WriteLine(two_float / three_float); } } }
run
|
edit
|
history
|
help
0
stack with stack Data type
Lesson 1.2 Part II
4.4.20
Square Integer Matrix
D19
conter 1 in binnary number
Contravariance
sayalitrialc#
Collections
Working nullable DateTime C#