Python:
import math
# 1)
(math.sqrt(5 * 4.3**2 + 3.6) / 9.5 - 3.47) * 8.2 + 7.4
# 2)
x = 2 # Любое число.
(math.sqrt(3*x) - math.cos(x)) / 2.5 + 141**5
C++:
#include <iostream>
#include <cmath>
using namespace std;
int main(int argc, char *argv[]) {
// 1)
(sqrt(5 * pow(4.3, 2) + 3.6) / 9.5 - 3.47) * 8.2 + 7.4;
// 2)
int x = 2; // Любое число.
(sqrt(3*x) - cos(x)) / 2.5 + pow(141, 5);
return 0;
}
Во всех языках ± так же
Python:
import math
# 1)
(math.sqrt(5 * 4.3**2 + 3.6) / 9.5 - 3.47) * 8.2 + 7.4
# 2)
x = 2 # Любое число.
(math.sqrt(3*x) - math.cos(x)) / 2.5 + 141**5
C++:
#include <iostream>
#include <cmath>
using namespace std;
int main(int argc, char *argv[]) {
// 1)
(sqrt(5 * pow(4.3, 2) + 3.6) / 9.5 - 3.47) * 8.2 + 7.4;
// 2)
int x = 2; // Любое число.
(sqrt(3*x) - cos(x)) / 2.5 + pow(141, 5);
return 0;
}
Во всех языках ± так же