Vapio

task1

Mar 3rd, 2021 (edited)
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.                    
  3. public class Program
  4. {
  5.     public static void Main()
  6.     {
  7.        
  8.         bool isDead = false;
  9.        
  10.         byte signNum = 2;
  11.         short bitesAmount = 2;
  12.         int sharkLength = 12;
  13.         long moneyAmount = 12L;
  14.        
  15.         float ratsRate = 0.4f;
  16.         double rootResult = Math.Sqrt(5);
  17.         decimal PI = 3.14M;
  18.        
  19.         char signBad = '\0';
  20.         string bandName = "Sperm";
  21.        
  22.     }
  23. }
Add Comment
Please, Sign In to add comment