Write a program to accept three numbers and find the product of those numbers, using While… Wend statement.
ANSWER SHOULD BE CORRECT OR REPORTED :)
Answers
Answered by
0
Answer:
int product( int x, int y, int z){
return (x*y*z);
}
Explanation:
You can call this product function in main() by passing three numbers.
Similar questions
Math,
18 days ago
Math,
18 days ago
Math,
1 month ago
Computer Science,
1 month ago
English,
9 months ago