Created
May 22, 2026 18:53
-
-
Save smah-beep/b2637c22e3823958150e9e9ec43de368 to your computer and use it in GitHub Desktop.
ДЗ: Переменные
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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