int a=5 ,b=3 ,c=7, d=0 ;
d=a++/3*++a%c ;
System.out.println(d);
Answers
Answered by
1
working
d= 5/3*7%7
=1*0
=0
Similar questions