Skip to content

Instantly share code, notes, and snippets.

@Ana19997
Created April 28, 2021 09:19
Show Gist options
  • Save Ana19997/591f847c31e63a536e8e975ae8d58026 to your computer and use it in GitHub Desktop.
Save Ana19997/591f847c31e63a536e8e975ae8d58026 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 _1проект
{
class Program
{
static void Main(string[] args)
{
byte age = 20;
sbyte temp = -45;
short balance = 30000;
int money = 150000;
long volume = 1083210000000;
float weight = 1.6f;
double price = 10.5;
char procent = '%';
string name = "Анастасия";
bool status;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment