Int x=15; int y=4;
Int result=x/y;
System.Out.println(result);
Answers
Answered by
10
The output will be 3 as data type of result is int..
so it will store. only the integer value .i.e. 3
so it will store. only the integer value .i.e. 3
Answered by
5
Result will be 3 as your coding is calling for a integer value in simple words.
Similar questions