Online Compiler - CodeBook Solution
</>
CodeBook
.
Home
Services
DSA Practice
Compiler
Blog
Contact
ā°
ā” CodeBook Compiler
C++ (GCC)
Python 3
Java
JavaScript (Node)
C (GCC)
Go
Ruby
Clear
ā¶ Run Code
š Code Editor
// Welcome to CodeBook Online Compiler! // Supports: C++, Python, Java, JavaScript, C #include <bits/stdc++.h> using namespace std; int main() { cout << "Hello, CodeBook!" << endl; // Try your code here vector<int> arr = {5, 3, 8, 1, 9, 2}; sort(arr.begin(), arr.end()); cout << "Sorted: "; for (int x : arr) cout << x << " "; cout << endl; return 0; }
š Output
// Your output will appear here...
š„ Standard Input (optional)