Défi : Affichage d’un Triangle
Modifiez le code pour afficher un triangle comme suit :
***
**
*
main.cs
12345678910namespace ConsoleApp { internal class Program { static void Main(string[] args) { System.Console.WriteLine("***"); } } }
- Utiliser trois instructions System.Console.WriteLine. L'une d'elles est déjà présente dans le code.
main.cs
123456789101112namespace ConsoleApp { internal class Program { static void Main(string[] args) { System.Console.WriteLine("***"); System.Console.WriteLine("**"); System.Console.WriteLine("*"); } } }
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 4
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 the code that needs to be modified?
What should I do if I want to print a larger triangle?
Can you explain how System.Console.WriteLine works?
Awesome!
Completion rate improved to 1.59
Défi : Affichage d’un Triangle
Glissez pour afficher le menu
Modifiez le code pour afficher un triangle comme suit :
***
**
*
main.cs
12345678910namespace ConsoleApp { internal class Program { static void Main(string[] args) { System.Console.WriteLine("***"); } } }
- Utiliser trois instructions System.Console.WriteLine. L'une d'elles est déjà présente dans le code.
main.cs
123456789101112namespace ConsoleApp { internal class Program { static void Main(string[] args) { System.Console.WriteLine("***"); System.Console.WriteLine("**"); System.Console.WriteLine("*"); } } }
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 4