Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Type Casting Practice | Dealing with Data Types
C# Basics

Type Casting PracticeType Casting Practice

Store the value number in the variables n1 and n2. Use explicit type casting if needed.

cs

main.cs

1. Use type casting only on the long variable.

using System;

namespace ConsoleApp
{
    internal class Program
    {
        static void Main(string[] args)
        {
            float number = 14.47f;

            // Change code below this line
            long n1 = (long) number;
            double n2 = number;
            // Change code above this line

            Console.WriteLine(n1);
            Console.WriteLine(n2);
        }
    }
}
      

Все було зрозуміло?

Секція 2. Розділ 12
course content

Зміст курсу

C# Basics

Type Casting PracticeType Casting Practice

Store the value number in the variables n1 and n2. Use explicit type casting if needed.

cs

main.cs

1. Use type casting only on the long variable.

using System;

namespace ConsoleApp
{
    internal class Program
    {
        static void Main(string[] args)
        {
            float number = 14.47f;

            // Change code below this line
            long n1 = (long) number;
            double n2 = number;
            // Change code above this line

            Console.WriteLine(n1);
            Console.WriteLine(n2);
        }
    }
}
      

Все було зрозуміло?

Секція 2. Розділ 12
some-alt