public class Main
{
public static void main(String[] args) {
double x = 2;
double otv = 2 + Math.pow(x, 2)/3;
System.out.println(otv);
}
Объяснение:
Math.pow() - возведение в степень
double - тип данных
public class Main
{
public static void main(String[] args) {
double x = 2;
double otv = 2 + Math.pow(x, 2)/3;
System.out.println(otv);
}
}
Объяснение:
Math.pow() - возведение в степень
double - тип данных