Advertisements
Advertisements
प्रश्न
Write down the main method which calls the following method:
int square(int a)
{
return(a*a);
}
कोड लेखन
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 5: User - Defined Methods - EXERCISES [पृष्ठ ३३७]