Write an equivalent c++ expressions for the ut + 1/2ft sq
Answers
Answered by
1
The equivalent expression in c++ is (u*t)+(0.5*a*t*t)
Answered by
0
"result= (u*t)+(1/2*(f*t*f*t))" is a c++ expression:
Explanation:
- The above question demands the expression for the ut + 1/2 ft square. So the above expression is a c++ expression which calculates the value of the formula and assigns the result on result variable.
- When a user wants to use this formula then he needs to first assign the all used variable and he also needs to give some value for the variable u, t and f.
- And he also needs to print the value of the result to get the value of the expression.
- The multiply symbols are put to calculate the multiplication.
Learn More:
- C++ : https://brainly.in/question/3999878
Similar questions