thegrudge

DeclareVariables

Nov 13th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. using System;
  2. class DeclareVariables
  3. {
  4.     static void Main()
  5.     {
  6.         ushort firstVariable = 52130;
  7.         sbyte secondVariable = -115;
  8.         int thirtVariable = 4825932;
  9.         byte fourtVariable = 97;
  10.         short fifthVariable = -10000;
  11.         Console.WriteLine("{0} \n{1} \n{2} \n{3} \n{4}",
  12.             firstVariable, secondVariable, thirtVariable, fourtVariable, fifthVariable);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment