a + bc in qbasic expression
Answers
Answered by
1
Cls
Print a+b*c
End
Hope, it helps
Answered by
1
Result=a+b*c:
Explanation:
- The above expression is written in Q-Basic language, in which the a,b and c is a variable whose value is needed to be assigned before this expression.
- The above expression firstly multiplies the value of b and c variable, then that value is added in the value of a variable.
- Then the added value is assigned on the Result variable. So when the value of the Result variable is printed by some syntax, then the user gets the result of the above expression.
Learn More:
- Q-Basic: https://brainly.in/question/2343849
Similar questions