Computer Science, asked by preethamr700210, 2 months ago

Evaluate:
int x=45, y=7,z;
System.out.println("Answer 1:" + (x/y));
System.out.println("Answer 2:" + (x%y));​

Answers

Answered by omkar181106
0

Answer:

1)6.43

2)4

is the answer

Answered by jyotijindal24
0

Answer:

Answer 1 : 6

Answer 2 : 3

Explanation:

x/y returns the quotient

and x%y returns the remainder

Similar questions