Advertisement
Josif_tepe

Untitled

Oct 26th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct vojska {
  5.  
  6.     int vojnici;
  7.     string ime;
  8.     string financiska_sostojba;
  9.     string ime_na_generalot;
  10.    
  11.    
  12.     void input() {
  13.         cin >> vojnici >> ime >> financiska_sostojba >> ime_na_generalot;
  14.     }
  15.     void print() {
  16.         cout << "broj na vojnici " << vojnici << endl;
  17.         cout << "ime na vojnikot " << ime << endl;
  18.         cout << "financiska_sostojba na generalot " << financiska_sostojba << endl;
  19.         cout << "ime na generalot " << ime_na_generalot << endl;
  20.        
  21.     }
  22.    
  23. };
  24.  
  25. int main() {
  26.    
  27.     vojska a;
  28.     a.input();
  29.    
  30.     a.print();
  31.    
  32.  
  33.     return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement