Created
June 29, 2021 19:06
-
-
Save chbtoys/5b1e8fd19a92de15b28107c7c8abe395 to your computer and use it in GitHub Desktop.
Code Examples. From Paper to Code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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