Advertisement
estevaofv

exemplo-const.cpp

Oct 21st, 2021
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. //Const sendo alterado em tempo de execução multiplas vezes.
  6. int main()
  7. {
  8.    
  9.     while(true)
  10.     {
  11.         int x =3;
  12.         cout <<"digite um numero: ";
  13.         cin >> x;
  14.         const int n =x+2;
  15.  
  16.         cout << n << endl;
  17.  
  18.     }
  19.     return 0;
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement