Advertisement
dllbridge

Untitled

Oct 1st, 2024
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.20 KB | None | 0 0
  1.  
  2.  
  3. #include  <string.h>
  4. #include   <stdio.h>
  5.  
  6. /////////////////////////////////////////////////////////
  7. class Acc
  8. {  
  9.     public:
  10.     static int   nCounter;
  11.            int       nBal;
  12.           char szName[99];
  13.          
  14.           int      add ();
  15.           int      take();
  16.           void    info ();
  17. };
  18.  
  19. int Acc::nCounter = 0;
  20.  
  21.  
  22.  
  23. /////////////////////////////////////////////////////////
  24. int main()
  25. {
  26.    
  27.     Acc p[99];
  28.    
  29.     char szName[99];   
  30.    
  31.     printf("Vvedite imya: ");   scanf("%s",  szName);  
  32.     strcpy (p[1].szName, szName);
  33.    
  34.     p[1].nBal = p[1].add();
  35.     printf(" Balans: %d\n", p[1].nBal);
  36.  
  37.     p[1].nBal = p[1].nBal - p[1].take();
  38.     printf(" Balans: %d\n", p[1].nBal);
  39.    
  40.     p[1].info();
  41.    
  42. return 0;
  43. }
  44.  
  45.  
  46. //////////////////////////////////////////////////////////////////
  47. int Acc::add()
  48. {
  49.    
  50.     int a;
  51.     printf("Vvedite balans:");
  52.     scanf("%d", &a);
  53.  
  54. return a;
  55. }
  56.  
  57. /////////////////////////////////////////////////////////////////
  58. int Acc::take()
  59. {
  60.    
  61.         int a;
  62.     printf("Vvedite skollo hotite snyat:");
  63.     scanf("%d", &a);
  64. return a;
  65. }
  66.  
  67. /////////////////////////////////////////////////////////////////
  68. void Acc::info()
  69. {
  70.      
  71.     printf("  Name: %s\n", szName);
  72.     printf("Balans: %d\n", nBal  );
  73.    
  74. }
  75.  
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement