Advertisement
dllbridge

Untitled

Jan 26th, 2025
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.01 KB | None | 0 0
  1.  
  2.  
  3. #include  <iostream>
  4. using namespace std;
  5.  
  6.  
  7.  
  8. //////////////////////////
  9. class T
  10. {
  11.      public:  
  12.        int   n1;
  13.        int   n2;
  14.        float  f;
  15.        char   c;
  16.        
  17.        int add();
  18.        
  19.        T();
  20.        
  21.  ////////////////////////////////////////////////
  22.        ~T()
  23.        {
  24.            cout << "GoodBye !\n";
  25.        }    
  26. };
  27.  
  28.  
  29.  
  30.  
  31. ////////////////////////////////////////////////////////
  32. int main()
  33. {
  34.    
  35.     T t1, tArr[2];
  36.  
  37.    
  38.     cout <<    "n1 = " << t1.n1    << endl;
  39.     cout <<    "n2 = " << t1.n2    << endl;        
  40.     cout << "t1.add() = " << t1.add() << endl;
  41.    
  42. return 0;
  43. }
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. ////////////////////////////////////////////////
  54.        T::T()
  55.        {
  56.              n1 = 100;
  57.              n2 =  12;    
  58.                      
  59.        }
  60.  
  61.  
  62.  
  63. ////////////////////////////////////////////////
  64.        int T::add()
  65.        {
  66.            
  67.           return n1 + n2;    
  68.        }
  69.  
  70.  
  71.  
  72.  
  73. /*
  74.  
  75. #include  <iostream>
  76. using namespace std;
  77.  
  78.  
  79.  
  80. //////////////////////////
  81. class T
  82. {
  83.      public:  
  84.        int   n1;
  85.        int   n2;
  86.        float  f;
  87.        char   c;
  88.        
  89.        int add()
  90.        {
  91.            
  92.           return n1 + n2;    
  93.        }
  94. };
  95.  
  96.  
  97.  
  98.  
  99. ////////////////////////////////////////////////////////
  100. int main()
  101. {
  102.    
  103.     T t1, tArr[77];
  104.  
  105.    
  106.     cout <<    "n1 = " << t1.n1    << endl;
  107.     cout <<    "n2 = " << t1.n2    << endl;        
  108.     cout << "add() = " << t1.add() << endl;
  109.    
  110. return 0;
  111. }
  112.  
  113. */
  114.  
  115.  
  116.  
  117.  
  118. /*
  119.  
  120. #include  <iostream>
  121. using namespace std;
  122.  
  123.  
  124.  
  125. //////////////////////////
  126. class T
  127. {
  128.      public:  
  129.        int   n1;
  130.        int   n2;
  131.        float  f;
  132.        char   c;
  133.        
  134.        int add()
  135.        {
  136.            
  137.           return n1 + n2;    
  138.        }
  139. };
  140.  
  141.  
  142.  
  143.  
  144. ////////////////////////////////////////////////////////
  145. int main()
  146. {
  147.    
  148.     T t1, tArr[77];
  149.  
  150.    
  151.     cout <<    "n1 = " << t1.n1    << endl;
  152.     cout <<    "n2 = " << t1.n2    << endl;        
  153.     cout << "add() = " << t1.add() << endl;
  154.    
  155. return 0;
  156. }
  157.  
  158.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement