<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>mytest</title>
</head>
<body>
<table border="2">
<tr>
<th>Страна </th>
<th>Столица </th>
<th>Официальный язык </th>
<th>Денежная единица </th>
</tr>
<tr>
<td>Италия </td>
<td>Рим </td>
<td>итальянский </td>
<td>евро </td>
</tr>
Тут должно быть так же как и во втором
Великобритания
Английский
Англия
Норвегия
Осло
норвежский
крона
</body>
</html>
Язык C++. В памяти несколько косячно хранятся вещественные числа, поэтому пришлось сделать следующие параметры в цикле.
#include <stdio.h>
#include <math.h>
float f(float x) {
return 2*acosf(x/2)+x*logf(tanf(x/2));
}
void main() {
float Y[10];
float a, b;
float summ=0;
int c = 0;
for (float i = 0.1; i < 2; i+=0.2)
Y[c++] = f(i);
printf_s("a,b - ?");
scanf_s("%f", &a);
scanf_s("%f", &b);
for (int i = 0; i < 10; i++)
if (a<= Y[i] && Y[i] <=b)
summ += Y[i];
printf_s("summ: %f",summ);
}
c = int(input("c = "))
z = int(input("z = "))
y = int(input("y = "))
b = (c**2+z**5)/y
print("b = ",b)