Skip to content

Instantly share code, notes, and snippets.

@jen6
Last active April 25, 2016 12:34
Show Gist options
  • Select an option

  • Save jen6/c06dcb898f5bccf1c2c1e4f4bf2ab7e1 to your computer and use it in GitHub Desktop.

Select an option

Save jen6/c06dcb898f5bccf1c2c1e4f4bf2ab7e1 to your computer and use it in GitHub Desktop.
오늘의 뻘짓 한줄로 1부터 argc까지의 합 구하기
#include <iostream>
int main(int n) {return (n == 0) ? 0 : n + main(n - 1);}
@jen6
Copy link
Author

jen6 commented Apr 25, 2016

D:\egutjugut\arduino\motion\ConsoleApplication1\Debug>ConsoleApplication1.exe 1 1 1 1 1 1 1 1 1

D:\egutjugut\arduino\motion\ConsoleApplication1\Debug>el
55

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment