Advertisement
dllbridge

Untitled

Feb 22nd, 2024
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4.  
  5.  
  6. namespace Sobolev
  7. {
  8.    
  9.    int n1, n2 = 2111;  
  10.    
  11.    
  12.    int foo()
  13.    {
  14.        
  15.      return 2112;      
  16.    }
  17.    
  18. }
  19.  
  20. using namespace     std;
  21. using namespace Sobolev;
  22.  
  23. //////////////////////////////////////////////////////////////////////
  24. int main()
  25. {
  26.  
  27.     setlocale(LC_ALL, "rus");  
  28.    
  29.     std::cout << "foo = " << foo() << std::endl;
  30.    
  31.    
  32. return 0;
  33. }
  34.  
  35.  
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement