Write a program that computers Bowling Average for a bowler who has given 1153 runs in 18
matches taking 109 wickets.
(Note: Bowling Average is no. of runs given per wickets i.e., Runs/Wickets)
Answers
Answered by
3
Explanation:
solve -
#include<iostream>
using namespace std;
int main()
{
// initializing the variables
int runs = 1153;
int matches = 18;
int wickets = 109;
int average;
average = runs / wickets ; // bowling average of the bowler is equal to the runs conceded by the bowler per wicket taken.
cout << "The bowling average of the bowler = "<<average; // average of the bowler will be printed .
Similar questions