Відповідь:
Пояснення:
print("Введить координати вершин трикутника по зростанню х")
x1, y1, x2,y2, x3,y3 = map(float, (input().split()))
print("Введить координати точки")
tx, ty = map(float, (input().split()))
S = (x1-x3)*(ty-y3)-(y1-y3)*(tx-x3)
if S==0:
print("Трикутик не існує...")
if(ty-y1)*(x2-x1) - (tx-x1)*(y2-y1) >= 0 and (ty-y2)*(x3-x2) - (tx-x2)*(y3-y2) >= 0 and (ty-y3)*(x1-x3) - (tx-x3)*(y1-y3) >= 0 \
or (ty-y1)*(x2-x1) - (tx-x1)*(y2-y1) <= 0 and (ty-y2)*(x3-x2) - (tx-x2)*(y3-y2) <= 0 and (ty-y3)*(x1-x3) - (tx-x3)*(y1-y3) <= 0:
print("Точка належить трикутнику")
else:
print("Точка НЕ належить трикутнику")
#include <cmath>
using namespace std;
void main()
{
int n,sum=0;
float y,k=0;
cin >> n;
int *mass = new int[n];
for (int i = 0;i < n;++i)
{
cin >> mass[i];
}
for (int i = 0;i < n;++i)
{
if (mass[i] >0 )
{
k++;
y=pow(mass[i],2);
cout<<y;
sum+=mas[i]
}
}
system("pause");
}
2)#include <iostream>
#include <cmath>
using namespace std;
void main()
{
int s,p,r,day=0;
cin >> s>>p>>r;
float km=s;
while(r>km)
{
km+=km*p/100;
day++;
}
cout << " km = " << km << " day = " << day << endl;
system ("pause");
}
Відповідь:
Пояснення:
print("Введить координати вершин трикутника по зростанню х")
x1, y1, x2,y2, x3,y3 = map(float, (input().split()))
print("Введить координати точки")
tx, ty = map(float, (input().split()))
S = (x1-x3)*(ty-y3)-(y1-y3)*(tx-x3)
if S==0:
print("Трикутик не існує...")
if(ty-y1)*(x2-x1) - (tx-x1)*(y2-y1) >= 0 and (ty-y2)*(x3-x2) - (tx-x2)*(y3-y2) >= 0 and (ty-y3)*(x1-x3) - (tx-x3)*(y1-y3) >= 0 \
or (ty-y1)*(x2-x1) - (tx-x1)*(y2-y1) <= 0 and (ty-y2)*(x3-x2) - (tx-x2)*(y3-y2) <= 0 and (ty-y3)*(x1-x3) - (tx-x3)*(y1-y3) <= 0:
print("Точка належить трикутнику")
else:
print("Точка НЕ належить трикутнику")