C++ CODE LANGUAGE Write a program that determines which of five geographic regio
ID: 3686052 • Letter: C
Question
C++ CODE LANGUAGE
Write a program that determines which of five geographic regions within a major city (north,south,east,west,and central) had the fewest reported automobile accidents last year. It should have the following two functions, which are called by main.
int getNumAccidents() is passed the name of a region. It asks the user for the number of automobile accidents reported in that region during the last year, validates the input, then returns it. It should be called once for each city region.
void findLowest() is passed the five accident totals. It determines which is the smallest and prints the name of the region, along with its accident figure. Input Validation: Do not accept an accident number that is less than 0.
Don't forget you need:
do/while loop(s) for input validation
use pass by value and pass by reference as needed
Explanation / Answer
#include using namespace std; int main() { int getNumAccidents(), smallest, MAX; void findLowest(); int north, south, east, west, central; coutRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.