I think storm surges cause fro means world "earth" so a storm surge is like a flood SO plates would cause earth quakes and stuff
All of the answers above are correct
Answer:
The method is as follows:
double square(int num){
return num*num;
}
Explanation:
Written in C++
This first line defines the method
double square(int num){
This line returns the square of num
return num*num;
}
<em>I've added the full program as an attachment where I include the main method</em>