Advertisement
Rodunskiy

Untitled

Apr 9th, 2024
623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. class program
  2. {
  3.     byte one = 1;
  4.     sbyte two = 2;
  5.     short three = 3;
  6.     ushort four = 4;
  7.     int five = 5;
  8.     uint six = 6;
  9.     float seven = 7.1f;
  10.     double eight = 7.1323;
  11.     char zero = '0';
  12.     string text = "Hello World";
  13.     bool canExit = true;
  14. }
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement