Skip to content

Instantly share code, notes, and snippets.

@chbtoys
Created June 29, 2021 19:06
Show Gist options
  • Save chbtoys/5b1e8fd19a92de15b28107c7c8abe395 to your computer and use it in GitHub Desktop.
Save chbtoys/5b1e8fd19a92de15b28107c7c8abe395 to your computer and use it in GitHub Desktop.
Code Examples. From Paper to Code.
// From Paper to Code
// Pipes - Absolute Value
// Run with: https://www.jdoodle.com/online-compiler-c++17/
// LaTeX: |x|
// Test LaTeX: https://quicklatex.com/
#include <iostream>
int main() {
int x = -5;
int result = std::abs(x);
std::cout << "Absolut Value of -5 = " << result << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment