Advertisement
Rodunskiy

Untitled

Apr 9th, 2024
617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. class program
  2. {
  3.     byte age = 1;
  4.     sbyte sum = 2;
  5.     short number = 3;
  6.     ushort time = 4;
  7.     int appleCount = 5;
  8.     uint seedCount = 6;
  9.     float weight = 7.1f;
  10.     double height = 7.1323;
  11.     char zero = '0';
  12.     string text = "Hello World";
  13.     bool canExit = true;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement