Advertisement
Guest User

new

a guest
Nov 23rd, 2020
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. const int C = 2;
  4. const float Pi = 3.1415;
  5. const char NOME [ ] = "Rodrigo";
  6.  
  7. using namespace std;
  8.  
  9. int main ( ) {    
  10.      
  11.      cout << C << "\n\t";
  12.      cout << 2*Pi << "\n\t\t";
  13.      cout << NOME;
  14.      
  15.      return 0;
  16. }
  17.    
  18.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement