Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. namespace órai
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. Console.WriteLine("Add meg az A pontot");
  8. double a = Convert.ToDouble(Console.ReadLine());
  9. Console.WriteLine("Add meg a B pontot");
  10. double b = Convert.ToDouble(Console.ReadLine());
  11. double b2 = b;
  12. double a2 = a;
  13.  
  14. double d = Math.Sqrt(b-a)*(b-a)+(b2-a2)*(b2-a);
  15.  
  16. Console.WriteLine("A távolságuk: {0}\n",d);
  17. Console.ReadKey();
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement