write an java expression for 3x2+2y ÷ x-y
Answers
Answered by
0
Answer:
What can be the Java program of the expression z=5x^3+2y/x+y?
Are virtual doctor visits effective for rheumatoid arthritis?
Import java.util.*;
public class xyz
{
public static void main()
{
Scanner sc= new scanner ( System.in);
int z= sc.nextInt();
int x=sc.nextInt();
int y=sc.nextInt();
z= (5*x*x*x+2*y)/(x+y);
System.out.println(“the required expression is”+z);
}
}
Answered by
0
Answer:
write the Java expression z = ''x* + 2y''
Similar questions