Computer Science, asked by Upkar5730, 11 months ago

Given the method below,write a mani( ) method that includes everything necessary to call given method.
int thrice ( int x)
{
return a * 3;
}

Answers

Answered by johnygatha
5

Answer:

9. public static void main (String args[]){

thrice();

}

Explanation:

Similar questions