Computer Science, asked by dsyed1077, 10 hours ago

Write a java program to accept the values for x and y from the user
and calculate,
F1 = x2+2x+4, F2= y2 ‒ 20y ‒1
then finally calculate F3 = F1‒ F2

Answers

Answered by jayantkumary76
0

Answer:

not sure what you mean about the progress

Answered by tejasrimaddala18
0

Answer:

class prgm

{

public static void main(string [] args)

{

int F1, F2, F3;

int x, y;

x=2;

y= 3;

F1=x2+2x+4:

F2=y2-20y-1;

F3=F1-F2;

System. out. print(F3) ;

}

}

Similar questions