Loading...
</>
CS Coding Academy
Home
Courses
Playground
About
Contact
Log in
Sign up
Search courses
Login required to run code.
You can still build websites in the HTML & CSS tab, but running Python, JavaScript, or C++ requires an account to prevent abuse.
Login
Sign Up
Code
Playground
Beta
Write, run, and test your code in real-time. No setup required.
HTML & CSS
Python
JavaScript
C++
C++ Editor
Clear
Run
#include
using namespace std; int main() { cout << "Hello from C++!" << endl; string name = "Student"; int age = 20; cout << "Name: " << name << ", Age: " << age << endl; int x = 10, y = 5; cout << "Sum: " << x + y << endl; cout << "Difference: " << x - y << endl; return 0; }
Try These Examples
Hello World
Variables
Loop
If/Else
Output
Clear
// Click "Run" to compile and execute your C++ code