Main.cc: In function ‘int main()’:
Main.cc:8:18: error: found ‘:’ in nested-name-specifier, expected ‘::’
8 | cin >> n >> s: // Nhập số lượng pháp sư và sức mạnh của kẻ thù
| ^
| ::
Main.cc:8:17: error: ‘s’ is not a class, namespace, or enumeration
8 | cin >> n >> s: // Nhập số lượng pháp sư và sức mạnh của kẻ thù
| ^
Main.cc:9:12: error: expected primary-expression before ‘int’
9 | vector r(n);
| ^~~
Main.cc:13:16: error: ‘r’ was not declared in this scope
13 | cin >> r[i];
| ^
Main.cc:16:10: error: ‘r’ was not declared in this scope
16 | sort(r.begin(), r.end());
| ^
Main.cc:31:20: error: invalid operands of types ‘int’ and ‘’ to binary ‘operator<<’
31 | count << count << endl; //In ra kết quả
| ~~~~~~~~~~~~~~~^~~~~~~