Problem | area_noi |
---|---|
User | BZ123 |
Submission Time | 2024-07-29 09:26:36 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
area_noi.cpp: In function ‘int main()’:
area_noi.cpp:3:2: error: ‘string’ was not declared in this scope
3 | string len;
| ^~~~~~
area_noi.cpp:4:2: error: ‘cin’ was not declared in this scope
4 | cin >> len;
| ^~~
area_noi.cpp:4:9: error: ‘len’ was not declared in this scope
4 | cin >> len;
| ^~~
area_noi.cpp:5:22: error: ‘stoi’ was not declared in this scope
5 | for (int i = 0; i < stoi(len); i++){
| ^~~~
area_noi.cpp:10:13: error: ‘max’ was not declared in this scope
10 | largest = max(largest, stoi(h) * stoi(l));
| ^~~
area_noi.cpp:12:2: error: ‘cout’ was not declared in this scope
12 | cout << largest;
| ^~~~