Utfordring: Erklære Eksplisitt Typede Variabler
- Declare a variable called
bigValueof type unsigned long. Initiate it with a value of123456789. - Declare a variable called
smallValueof 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); } } }
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 2. Kapittel 2
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Suggested prompts:
What is the difference between `ulong` and `int` in C#?
Can you show me how to declare these variables in code?
What are some common uses for `ulong` and `int` types?
Awesome!
Completion rate improved to 1.59
Utfordring: Erklære Eksplisitt Typede Variabler
Sveip for å vise menyen
- Declare a variable called
bigValueof type unsigned long. Initiate it with a value of123456789. - Declare a variable called
smallValueof 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); } } }
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 2. Kapittel 2