Computer Science, asked by alkasinha6552, 8 months ago

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 appkappo11
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