Challenge: Declaring Explicitly Typed Variables
- Declare a variable called
bigValue
of type unsigned long. Initiate it with a value of123456789
. - Declare a variable called
smallValue
of type integer. Initiate it with a value of1234
.
main.cs
12345678910111213141516171819using System.Drawing; using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Replace ___ with necessary data type ___ bigValue = 123456789; ___ smallValue = 1234; Console.WriteLine(bigValue); Console.WriteLine(smallValue); } } }
- The keyword for unsigned long data type is
ulong
.
main.cs
123456789101112131415161718using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Replace ___ with necessary data type ulong bigValue = 1234567; int smallValue = 1234; Console.WriteLine(bigValue); Console.WriteLine(smallValue); } } }
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 2. Capitolo 2
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Awesome!
Completion rate improved to 1.59
Challenge: Declaring Explicitly Typed Variables
Scorri per mostrare il menu
- Declare a variable called
bigValue
of type unsigned long. Initiate it with a value of123456789
. - Declare a variable called
smallValue
of type integer. Initiate it with a value of1234
.
main.cs
12345678910111213141516171819using System.Drawing; using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Replace ___ with necessary data type ___ bigValue = 123456789; ___ smallValue = 1234; Console.WriteLine(bigValue); Console.WriteLine(smallValue); } } }
- The keyword for unsigned long data type is
ulong
.
main.cs
123456789101112131415161718using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Replace ___ with necessary data type ulong bigValue = 1234567; int smallValue = 1234; Console.WriteLine(bigValue); Console.WriteLine(smallValue); } } }
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 2. Capitolo 2