Advertisement
dllbridge

Untitled

Dec 14th, 2024
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. struct AAA
  6. {
  7.        
  8.       int  nSec;
  9.       int  nMin;
  10.       int nHour;    
  11.        
  12. };
  13.  
  14.  
  15. //////////////////////////////////////////////////////////
  16. int main()
  17. {
  18.    
  19.     int n = 9;
  20.    
  21.     AAA a1;
  22.    
  23.     a1.nSec  = 21;
  24.     a1.nMin  =  3;
  25.     a1.nHour =  1;    
  26. }
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement