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.)
void tenTimes(int number) {
cout << number*10 << endl;
}
Comments
Leave a comment