Problem 9
Write \(C++\) expressions for the following algebraic expressions: A) \(a=12 x\) B) \(z=5 x+14 y+6 k\) C) \(y=x^{4}\) D) \(g=\frac{h+12}{4 k}\) E) \(c=\frac{a^{3}}{b^{2} k^{4}}\)
Problem 15
Write a multiple assignment statement that can be used instead of the following group of assignment statements: \\[ \begin{array}{l} \text { east }=1 ; \\ \text { west }=1 ; \\ \text { north }=1 \\ \text { south }=1 \end{array} \\]
Problem 20
What header file must be included A) to perform mathematical functions like sqrt? B) to use files? C) to use stream manipluators like setprecision?
Problem 21
A bowling alley is offering a prize to the bowler whose average score from bowling three games is the lowest. Write a pseudocode algorithm for a program that inputs three bowling scores and calculates and displays their average.