Computer Science, asked by cristianodeewosh, 10 months ago

write a program to create a function that returns the square of a supplied number (in qbasic)​

Answers

Answered by arhamfar22
0

Answer:

public long square(int s){

return s*s;

}

//this program is in java

Similar questions