45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pontok
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.ForegroundColor = ConsoleColor.DarkMagenta;
|
|
Console.WriteLine("Adja meg az 1. pont a koord! (-51<a<51)");
|
|
int a = int.Parse(Console.ReadLine());
|
|
|
|
Console.WriteLine("Adja meg az 2. pont a koord! (-51<a<51)");
|
|
int b = int.Parse(Console.ReadLine());
|
|
|
|
//generált pont
|
|
Random random = new Random();
|
|
int x = random.Next(-50, 51);
|
|
int y = random.Next(-50, 51);
|
|
|
|
Console.WriteLine($"4. feladat: pont1({a},{b}), pont2({x},{y})");
|
|
|
|
if (a == x && b == y)
|
|
{
|
|
Console.WriteLine("A két pont egybeesik, koordinátáik megegyeznek");
|
|
}
|
|
else if (a == x)
|
|
{
|
|
Console.WriteLine("A két pont függőleges egyenesen van");
|
|
}
|
|
else if (b == y)
|
|
{
|
|
Console.WriteLine("A két pont vízszintes egyenesen van");
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("A két pont ferde egyenesen van");
|
|
}
|
|
}
|
|
}
|
|
} |