Advertisement
Infiniti_Inter

Практика 2, задание 1, номер 11

Sep 9th, 2019
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace mainSolution
  8. {
  9.     public class MyException : Exception
  10.     {
  11.         public MyException(string messege) : base(message: messege + "\n\n\n Exception founded by Decibit\n\n\n") { }
  12.         public MyException() : base()
  13.         {
  14.  
  15.         }
  16.         public void Messsage()
  17.         {
  18.             Console.WriteLine("\n\n\n\n\n\n Invalid number, please enter a number from 1 to 10 \n\n\n\n\n\n");
  19.         }
  20.  
  21.  
  22.     }
  23.     class Input
  24.     {
  25.         private static IEnumerator<string> getin()
  26.         {
  27.             while (true)
  28.                 foreach (string s in Console.ReadLine().Split().Where(x => x.Length > 0))
  29.                     yield return s;
  30.         }
  31.  
  32.         private IEnumerator<string> inp = getin();
  33.  
  34.         public string GetString() { inp.MoveNext(); return inp.Current; }
  35.         public int GetInt() { return int.Parse(GetString()); }
  36.         public long GetLong() { return long.Parse(GetString()); }
  37.         public double GetDouble() { return double.Parse(GetString()); }
  38.     }
  39.  
  40.     static class Program
  41.     {
  42.         static double sqr(double a) => a * a;
  43.         static double length(double x1, double y1, double x2, double y2) => Math.Sqrt(sqr(x1 - x2) + sqr(y1 + y2));
  44.  
  45.         static int next(int i) => (i + 1)%3;
  46.  
  47.         static void Main(string[] args)
  48.         {
  49.  
  50.             double[] x = new double[3];
  51.             double[] y = new double[3];
  52.             Input cin = new Input();
  53.             for (int i = 0; i < 3; i++)
  54.             {
  55.                 x[i] = cin.GetDouble();
  56.                 y[i] = cin.GetDouble();
  57.             }
  58.             double ans = 0;
  59.             for (int i = 0; i < 3; i++)
  60.             {
  61.                 ans += length(x[i], y[i], x[next(i)], y[next(i)]);
  62.             }
  63.             Console.WriteLine(ans);
  64.         }
  65.     }
  66.  
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement