Problem card
User noob41
Submission Time 2023-11-08 14:21:20
Score 0
Max Time N/A
Max Memory N/A

Compile Error

card.cpp: In function ‘int32_t main()’:
card.cpp:13:10: error: cannot convert ‘std::__cxx11::basic_string<char>::length’ from type ‘std::__cxx11::basic_string<char>::size_type (std::__cxx11::basic_string<char>::)() const noexcept’ {aka ‘long unsigned int (std::__cxx11::basic_string<char>::)() const noexcept’} to type ‘long long int’
13 | int n=k.length;
| ^~~~~~
card.cpp:15:18: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
15 | if(k[i]=="A"){
| ^~~
card.cpp:19:23: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
19 | else if(k[i]=="B"){
| ^~~
card.cpp:24:15: error: no match for ‘operator-’ (operand types are ‘std::string’ {aka ‘std::__cxx11::basic_string<char>’} and ‘int’)
24 | cout<<dq[k-1]<<" "<<dq[k]<<" "<<dq[k+1];
|