Computer Science, asked by reetu37, 7 months ago

write a program on java to find different two numbers into e=30 int f =100 final out put should be restore in int g =​

Answers

Answered by mittalshaurya144
1

Answer:

class sum

{

void main()

{

int e=30;

int f=100;

System.out.println("The value of e is:" +e);

System.out.println("The value of f is:" +f);

int g= e+f;

System.out.println("The value of g is:" +g);

}

}

Explanation:

Plz mark as brainliest

Similar questions