Nemesis_War

Task One

Mar 3rd, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             byte positiveByte;
  10.             sbyte combinedByte;
  11.             short combinedShort;
  12.             ushort positiveShort;
  13.             int combinedInt;
  14.             uint positiveInt;
  15.             long combinedLong;
  16.             ulong positiveLong;
  17.             float notFogetF;
  18.             double withoutF;
  19.             bool trueOrFalse;
  20.             char letter;
  21.             string words;
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment