hello, I attached a file that has codes, the first one is asking you to look for syntax errors and correct them, the second one is asking you to replace every capitalized comment with what it asks you to do. after finishing them you can send the code to me via a txt file or a visual studio project.
Lab 3b- Review: Finding and Correcting Syntax Errors
Step 1: Here is a copy of some source code.
1 // Lab 3 findErrors.cpp
2 // This program contains many syntax errors and will not compile.
3 // Fix the errors so that it correctly finds the average of the
4 // two integers the user enters.
5
6 #include “stdafx.h”
7 #include
8 using namespace std;
int
10 intlmain()
117 (Int numi, num2;
12 double average;
9
13
14
15
16-
17
18
// Input 2 integers
Cout