lovelyvook

Unit_01

Mar 30th, 2024
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Ijunior
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string firstName = "Иван";
  14.             string lastName = "Иванов";
  15.             byte age = 30;
  16.             float height = 1.8f;
  17.             float weight = 80.4f;
  18.             bool hasChildren = false;
  19.             bool hasCar = true;
  20.             int numberOfCars = 2;
  21.             string colorOfCar1 = "red";
  22.             string colorOfCar2 = "blue";
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment