Computer Science, asked by cariegobryzexia, 2 months ago

Write a function sqr (num) that returns the square of its parameter num.

Answers

Answered by ajb7899
0

Answer:

The answer is given as per the language Java

Explanation:

int sqr(num)

{

int sq = num * num;

return sq;

}

Similar questions
Math, 1 month ago