Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- //Which of the following values can be assigned to a variable of type float and which to a variable of type double:
- //34.567839023, 12.345, 8923.1234857, 3456.091? Write a program to assign the numbers in variables and print them to
- //ensure no precision is lost.
- class FloatOrDouble
- {
- static void Main()
- {
- //34.567839023, 12.345, 8923.1234857, 3456.091
- double firstNumber = 34.567839023;
- Console.WriteLine(firstNumber);
- float secondNumber = 12.345f;
- Console.WriteLine(secondNumber);
- double thirdNumber = 8923.1234857;
- Console.WriteLine(thirdNumber);
- float fourthNumber = 3456.091f;
- Console.WriteLine(fourthNumber);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment