Write the shortest way to express each of the following statements:-
a.)X=X+1
b.)X=X/2
c.)X=X-1
d.)X=X+Y
e.)X=X-(Y+7)
Answers
Answered by
6
Answer:
Answer:
x+=1
x/=2
Answered by
0
The shortest way to express each of the following statements are:
a) X=X+1 - x+=1
b) X=X/2 - x/=2
c) X=X-1 - x-=1
d) X=X+Y - x+=y
e) X=X-(Y+7) - x-=y+7
#SPJ3
Similar questions