Just a comment
This commit is contained in:
parent
118ea58c86
commit
34241b443b
|
@ -1,14 +0,0 @@
|
||||||
from math import sqrt
|
|
||||||
|
|
||||||
|
|
||||||
x1, y1 = input("Introduza x1 e y1, separados por uma virgula ',': ").split(',')
|
|
||||||
x2, y2 = input("Introduza x2 e y2, separados por uma virgula ',': ").split(',')
|
|
||||||
|
|
||||||
x1 = float(x1)
|
|
||||||
y1 = float(y1)
|
|
||||||
x2 = float(x2)
|
|
||||||
y2 = float(y2)
|
|
||||||
|
|
||||||
distancia = sqrt((x2 - x1)**2 + (y2 - y1)**2)
|
|
||||||
|
|
||||||
print('A distancia entre os dois pontos é: ', distancia)
|
|
|
@ -1,5 +1,8 @@
|
||||||
// .NET core 6.0
|
// .NET core 6.0
|
||||||
|
|
||||||
|
// This is just a C# version of the python solution:
|
||||||
|
// https://github.com/TiagoRG/uaveiro-leci/blob/master/1ano/fp/aula02/darts.py
|
||||||
|
|
||||||
namespace Darts
|
namespace Darts
|
||||||
{
|
{
|
||||||
internal class Program
|
internal class Program
|
||||||
|
|
Loading…
Reference in New Issue