- 1
arthmetic operator over relational operator!!
int a=123, b=33,c=234,d=0,e=1,f=0; int g=e/a>f-c<=d+b=? find the value of g.
3 Réponses
0
Hi! try to print your version of the solution
0
#Addition
3 + 7
#Subtraction
10 - 4
#Multiplication
89 * 6
#Division
45 / 5
# Modulus : returns the remainder of the division of 121/10
121 %% 10
#Exponentiation
4^2
0
Please try this code