Questions: The following code snippet contains an error. What is the error?
```
int cost = 0;
cin >> cost;
if ( cost > 100);
cost = cost - 10;
cout << "Discount cost: " << cost << endl;
```
Transcript text: The following code snippet contains an error. What is the error?
```
int cost = 0;
cin $3 cost;
if ( cost > 100);
r
cost = cost - 10;
}
cout &< "Discount cost: " < cost << endl;
```