Advertisements
Advertisements
Question
Write down the main method which calls the following method:
int square(int a)
{
return(a*a);
}
Code Writing
Solution
int z = square(S);
(or)
int c = 8;
int z = square(c);
(or)
int z = square(ob.nextlnt()); // ob is the Scanner object
shaalaa.com
Is there an error in this question or solution?
Chapter 5: User - Defined Methods - EXERCISES [Page 337]