Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace p
- {
- class Program
- {
- public static void Main(string[] args)
- {
- Console.WriteLine("Choisissez un nombre");
- int nombre = int.Parse(Console.ReadLine());
- int boucle = 0;
- while (boucle <= 10)
- {
- nombre = nombre + 1;
- Console.WriteLine(nombre);
- boucle = boucle + 1;
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment