Команда x:=4 присваивает переменной x значение 4
import random
def numbers(s):
mas = [random.randint(1, 15) for i in range(s)]
print(mas)
print("{} елементов имеют максимальное значение".format(mas.count(max(mas))))
numbers(25)
X+y+z=96
------------------------
1) x1=x-y
y1=y+y=2y
2) y2=y1-z=2y-z
z1=2z
3) z2=z1-x1=2z-x+y
x2=x1+x1=2x-2y
x2=y2=z2=96:3=32
----------------------------------
2x-2y=32 ----> x-y=16 ----> x=y+16 подставляем в (*)
2y-z=32 ------> z=2y-32 подставляем в (*)
2z-x+y=32 (*)
--------------------------------------------------
2(2y-32) -(y+16) +y=32
4y-64-y-16+y=32
4y=112
y=28
x=y+16=28+16=44
z=2y-32=56-32=24
ответ 44 28 24
using System;
using static System.Console;
namespace ConsoleApp9
{
class Program
{
static void Main(string[] args)
{
double a, b, c, v, x, y;
Write("Input a: ");
a= double.Parse(ReadLine());
Write("Input b: ");
b = double.Parse(ReadLine());
Write("Input c: ");
c = double.Parse(ReadLine());
Write("Input x: ");
x = double.Parse(ReadLine());
Write("Input y: ");
y = double.Parse(ReadLine());
if (x < 3 && y < 0)
v = ((a + b + c) / 2) * Math.Min(x, Math.Min(y, (x + y) / (x - y)));
else if (x > 0 && y > 1)
v = Math.Max(x * x, y * y * y);
else
v = y * (a + b + c);
WriteLine("v=" + v.ToString());
ReadKey();
}
}
}