Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ijunior
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string firstName = "Иван";
- string lastName = "Иванов";
- byte age = 30;
- float height = 1.8f;
- float weight = 80.4f;
- bool hasChildren = false;
- bool hasCar = true;
- int numberOfCars = 2;
- string colorOfCar1 = "red";
- string colorOfCar2 = "blue";
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment