Advertisement
Bob103

C#_Kat(4)

Mar 12th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write("Enter x:");
  10.             int x = int.Parse(Console.ReadLine());
  11.             Console.Write("Enter y:");
  12.             int y = int.Parse(Console.ReadLine());
  13.             Console.WriteLine("Difference = {0}", x - y);
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement