Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
binary
//g++ 5.4.0 #include <iostream> using namespace std; void binary (int num) { if (num <= 1) { cout << num; return; } cout<< num%2; binary (num/2); } int main() { binary(3); }
run
|
edit
|
history
|
help
0
adjacent_difference-30-Seconds-Of-CPP
LIS_NEW
BubDoubArray2
Einstein's Physics
Zscore
11933
-fno-elide-constructors
Minimum Vertices to Traverse Directed Graph
Stats - Central Limit Theorem - Normal Distribution with multiple items
Rev Fact WIP