1
0
Fork 0
SDEV-240-81/week-03/findErrors.cpp

24 lines
588 B
C++

// Lab 3 findErrors.cpp
// This program contains many syntax errors and will not compile.
// Fix the errors so that it correctly finds the average of the
// two integers the user enters.
// Llewellyn van der Merwe
#include <iostream>
using namespace std;
int main() {
int num1, num2;
double average;
// Input 2 integers
cout << "Enter two integers separated by one or more spaces: ";
cin >> num1 >> num2;
// Find and display their average
average = (num1 + num2) / 2;
cout << "\nThe average of these 2 numbers is " << average << endl;
return 0;
}