write a programme that computers bowling average for a bowler who has given 1153 runs in 18 matches tak8ng 109 wickets.
((note-bowling a erage is no. of runs given per wickets i.e,runs/wickets))
Answers
Answered by
4
Explanation:
class Cricket
{
public static void main (String args[])
{
int runs = 1153 ;
int wickets = 109 ;
int ba = runs/wickets ;
System . out .println("The runs made " + runs );
System . out .println("The wickets made " + wickets );
System . out .println("The bowling average " + ba );
}
}
Please mark the answer as brainliest
Similar questions