Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Ana19997/6d9e64f202a023d788f340e005bf2067 to your computer and use it in GitHub Desktop.
Save Ana19997/6d9e64f202a023d788f340e005bf2067 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace цикл
{
class Program
{
static void Main(string[] args)
{
int discount = 20;
while (discount -- > 0)
{
Console.WriteLine("Скидка!");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment