Write a function sqr (num) that returns the square of its parameter num.
Answers
Answered by
0
Answer:
The answer is given as per the language Java
Explanation:
int sqr(num)
{
int sq = num * num;
return sq;
}
Similar questions
English,
1 month ago
Math,
1 month ago
Computer Science,
1 month ago
Political Science,
2 months ago
Math,
9 months ago
Math,
9 months ago