Вот на быструю руку только тела программ
1.
C++Выделить код
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
double x, rezult;
cout << "Vvedite x ="
cin >> x;
if (x == 0)
{
cout << "Error" << end;
return;
}
else
rezult = fabs( (x * x * x) - (x * x) ) - ((7 * x) / (x * x *x)) - 15 * x;
cout << "Rezultat =" << rezult << endl;
2.
rezult = 1 + x / 3 + fabs(x) + (x * x * x) + 4 / 2;
1)
a = int(input("введіть 1 число: "))
b = int(input("введіть 2 число: "))
c = int(input("введіть 3 число: "))
d = int(input("введіть 4 число: "))
e = int(input("введіть 5 число: "))
f = int(input("введіть 6 число: "))
d = int(input("введіть 7 число: "))
q = int(input("введіть 8 число: "))
w = int(input("введіть 9 число: "))
z = int(input("введіть 10 число: "))
suma = [a,b,c,d,e,f,d,q,w,z]
print('сума введених чисел = ',sum(suma))
2)
s = 0
while true:
a = int(input("введіть число: "))
s += a
print("сума введених чисел: ",s)
if a == 0:
break
Вот на быструю руку только тела программ
1.
C++Выделить код
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
double x, rezult;
cout << "Vvedite x ="
cin >> x;
if (x == 0)
{
cout << "Error" << end;
return;
}
else
{
rezult = fabs( (x * x * x) - (x * x) ) - ((7 * x) / (x * x *x)) - 15 * x;
}
cout << "Rezultat =" << rezult << endl;
2.
C++Выделить код
1
2
3
4
5
6
7
8
double x, rezult;
cout << "Vvedite x ="
cin >> x;
rezult = 1 + x / 3 + fabs(x) + (x * x * x) + 4 / 2;
cout << "Rezultat =" << rezult << endl;
1)
a = int(input("введіть 1 число: "))
b = int(input("введіть 2 число: "))
c = int(input("введіть 3 число: "))
d = int(input("введіть 4 число: "))
e = int(input("введіть 5 число: "))
f = int(input("введіть 6 число: "))
d = int(input("введіть 7 число: "))
q = int(input("введіть 8 число: "))
w = int(input("введіть 9 число: "))
z = int(input("введіть 10 число: "))
suma = [a,b,c,d,e,f,d,q,w,z]
print('сума введених чисел = ',sum(suma))
2)
s = 0
while true:
a = int(input("введіть число: "))
s += a
print("сума введених чисел: ",s)
if a == 0:
break