Advertisement
Fhernd

ejercicio21.cpp

Sep 8th, 2019
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6.     int numero = 7;
  7.    
  8.     cout << numero << endl;
  9.    
  10.     numero -= 3; // numero = numero - 3;
  11.    
  12.     cout << numero;
  13.    
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement