Computer Science, asked by kpsandhya1975, 1 month ago

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 officialjoker630
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 priyanshu31877
0
The output will 5,10,9 ok dear .
Similar questions