15
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
Console.Write("Entrez votre prénom");
8
string prenom = Console.ReadLine();
9
Console.Write("Entrez votre nom");
10
string nom = Console.ReadLine();
11
Console.Write("Entrez votre age");
12
string age = Console.ReadLine();
13
Console.WriteLine("Bonjour {0} {1}, vous avez {2} ans", prenom, nom, age);
14
}
15
}
Cached Result
Entrez votre prénom
>