Advertisement
asvd32

01

Jan 31st, 2025 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 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 ConsoleApp3
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string playerName = "Vladimir";
  14.             int age = 33;
  15.             int maxHealf = 100;
  16.             float healf = 100f;
  17.             float damage = 10f;
  18.             bool canFly = true;
  19.             char classOfSchool = 'A';
  20.             byte dayOfMonth = 14;
  21.             string sicretKey = $"{classOfSchool}-{dayOfMonth}";
  22.             bool isCrazy = true;
  23.         }
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement