Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save smah-beep/b2637c22e3823958150e9e9ec43de368 to your computer and use it in GitHub Desktop.

Select an option

Save smah-beep/b2637c22e3823958150e9e9ec43de368 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 _DZ_
{
internal class Program
{
static void Main(string[] args)
{
int quantityPets = 8;
bool isDrop = false;
string nameShop = "Пятёрочка";
float averageScore = 4.25f;
char generalSymbol = '5';
double percentApple = 3.1;
string nameBird = "Григорий";
int maxCountBildings = 67;
byte countAtempt = 0;
long money = 45903455678;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment