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

```
int Main()
{
int a,b,c;
int a = 5;
float $_per_month, price;
cout << “Enter pay per month and price.”;
cin >> price >> $_per_month;
return 0;
}
```


```
int Main() //should be main()
{
int a,b,c;
int a = 5;
float $_per_month, price; //can’t use $ in var name
cout << “Enter pay per month and price.”;
cin >> price >> $_per_month;
return 0;
}
```

Computer Science & Information Technology

You might also like to view...

It is often more efficient to make changes to an object with the ____ because you simply can click and drag an object on the stage rather than switch panels and enter a variety of values.

a. Properties panel b. Edit Tool c. Transform panel d. Free Transform Tool

Computer Science & Information Technology

Why do you think businesses like to use Excel more than Access? What arguments would you make for using both?

What will be an ideal response?

Computer Science & Information Technology

When you set up your wireless router, you should change the ________, which is also called the wireless network name.

A) WAP B) SSID C) NAT D) WEP

Computer Science & Information Technology

Table formatting attributes, such as borders and spacing, are set by default while creating a table in HTML.

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

Computer Science & Information Technology