Answers for "c# divide two integers get float"

C#
0

c# divide two integers get float

double num3 = (double)num1/(double)num2;
float num3 = (float)num1/(float)num2;
Posted by: Guest on February-17-2022

C# Answers by Framework

Browse Popular Code Answers by Language