Problem moneychanger
User fueh
Submission Time 2025-01-14 21:30:01
Score 0
Max Time N/A
Max Memory N/A

Compile Error

moneychanger.cpp: In function ‘int main()’:
moneychanger.cpp:22:5: error: ‘vector’ was not declared in this scope
22 | vector<int> coins; // Example coin denominations
| ^~~~~~
moneychanger.cpp:22:5: note: suggested alternatives:
In file included from /usr/include/c++/9/vector:67,
from moneychanger.cpp:2:
/usr/include/c++/9/bits/stl_vector.h:386:11: note: ‘std::vector’
386 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
In file included from moneychanger.cpp:2:
/usr/include/c++/9/vector:90:13: note: ‘std::pmr::vector’
90 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
moneychanger.cpp:22:12: error: expected primary-expression before ‘int’
22 | vector<int> coins; // Example coin denominations
| ^~~
moneychanger.cpp:25:2: error: ‘cin’ was not declared in this sc