Advertisement
35657

Untitled

Sep 3rd, 2023
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. void Mod(int* x) {
  7.    
  8.     if (*x < 0) {
  9.         *x *= -1;
  10.     }
  11. }
  12.  
  13.  
  14. int main() {
  15.  
  16.     int x = -5;
  17.  
  18.     Mod(&x);
  19.  
  20.     cout << x << endl;
  21.    
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement