Type Casting Practice
Store the value number
in the variables n1
and n2
. Use explicit type casting if needed.
main
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { float number = 14.47f; // Change code below this line long n1 = ___; double n2 = ___; // Change code above this line Console.WriteLine(n1); Console.WriteLine(n2); } } }
Thanks for your feedback!