Identify the compiler errors, and state what is needed to eliminate the error(s).

```
#include
using namespace standard;
int main()
{
int a,4_for_Fun;
cout << Enter a;
cin >> a;
4_for_Fun = a;
return 0;
}
```


```
#include
using namespace standard; //should be std, not standard
int main()
{
int a,4_for_Fun; //name variable starting w/ 4
cout << Enter a;
cin >> a;
4_for_Fun = a; //invalid variable
return 0;
}
```

Computer Science & Information Technology

You might also like to view...

Which of the following tabs should you click to verify that the margins and page size are correct?

A. VIEW B. DESIGN C. PAGE LAYOUT D. REVIEW

Computer Science & Information Technology

Programmers often refer to a ____ search as a "divide and conquer" procedure.

A. bubble B. binary C. division D. split

Computer Science & Information Technology

Instant messaging takes place in real time between users who are chatting over a network and using network-connected devices.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Each ____ contains a list of commands you can use to perform tasks such as opening, saving, printing, and editing photos.

A. dock B. menu C. bar D. index

Computer Science & Information Technology