Défi : Déclaration de Variable
Complétez le code en déclarant les variables value_1
et value_2
ayant respectivement les valeurs 10
et 20
.
main.cs
12345678910111213141516namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Write code below this line // Write code above this line System.Console.WriteLine("Value 1: " + value_1); System.Console.WriteLine("Value 2: " + value_2); } } }
- Utilisez le mot-clé
var
et l'opérateur d'affectation (=
) pour la déclaration de variable.
main.cs
1234567891011121314151617namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Write code below this line var value_1 = 10; var value_2 = 20; // Write code above this line System.Console.WriteLine("Value 1: " + value_1); System.Console.WriteLine("Value 2: " + value_2); } } }
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 9
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Suggested prompts:
Can you show me how to declare the variables using the var keyword?
What is the correct syntax for assigning values to variables in JavaScript?
Can you provide an example of declaring and assigning these variables?
Awesome!
Completion rate improved to 1.59
Défi : Déclaration de Variable
Glissez pour afficher le menu
Complétez le code en déclarant les variables value_1
et value_2
ayant respectivement les valeurs 10
et 20
.
main.cs
12345678910111213141516namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Write code below this line // Write code above this line System.Console.WriteLine("Value 1: " + value_1); System.Console.WriteLine("Value 2: " + value_2); } } }
- Utilisez le mot-clé
var
et l'opérateur d'affectation (=
) pour la déclaration de variable.
main.cs
1234567891011121314151617namespace ConsoleApp { internal class Program { static void Main(string[] args) { // Write code below this line var value_1 = 10; var value_2 = 20; // Write code above this line System.Console.WriteLine("Value 1: " + value_1); System.Console.WriteLine("Value 2: " + value_2); } } }
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 9