Skip to content

Instantly share code, notes, and snippets.

@chbtoys
Created June 29, 2021 19:01
Show Gist options
  • Save chbtoys/bf67811b42f889a1ad4554d6b2e1ea00 to your computer and use it in GitHub Desktop.
Save chbtoys/bf67811b42f889a1ad4554d6b2e1ea00 to your computer and use it in GitHub Desktop.
Code Examples. From Paper to Code.
// From Paper to Code
// Sigma - Summation
// Run with: https://www.jdoodle.com/online-compiler-c++17/
// LaTeX: \sum_{i=1}^{100} i
// Test LaTeX: https://quicklatex.com/
#include <iostream>
int main() {
int sum=0;
for (int i=1;i<=100;i++)
{
sum += i;
}
std::cout << "Sum = " << sum << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment