Assign value 5 to a variable using = Multiply it with 2 to generate 10 and subtract 1 to generate 9. c++ coding.
please it's urgent
Answers
Answered by
1
Answer:
Hope it helps
Explanation:
a = 5 print(a)
print(a)a = a * 2 print(a)
print(a)a = a - 1 print(a)
OUTPUT
OUTPUT5,10,9
Answered by
0
The output will 5,10,9 ok dear .
Similar questions