find the output of the following code :
a,b=-1,-5
c=a*b-a%b/a
print(c)
Answers
Answered by
1
Answer:
the correct answer is 4.0
Explanation:
a=-1
b=-5
c=a*b-a%b/a
print(c)
answer is 4.0
Similar questions