Answer to Question #161239 in C++ for Ashes

Question #161239

Write a function named times Ten . The function should have an integer parameter named

number. When times Ten is called, it should display the product of number times ten. (Note:

just write the function. Do not write a complete program.)


1
Expert's answer
2021-02-09T15:27:16-0500
void tenTimes(int number) {
    cout << number*10 << endl;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog