Srxon05

main.cpp

Feb 7th, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include "auto.hpp"
  2. int main()
  3. {
  4.     cout << "Hello world!" << endl;
  5.     return 0;
  6. }
  7. void print(Auto a1){
  8. cout << "Auto marke "<<endl;
  9. cout <<a1.getMarka()<<endl;
  10. cout<<", modela " <<endl;
  11.  cout<<a1.getModel()<<endl;
  12.  cout<<" jacine "<<endl;
  13.  cout<<a1.getJacina()<<endl;
  14.  cout<<" koristi gorivo "<<endl;
  15.  cout<<a1.getGorivo()<<endl;
  16. }
Add Comment
Please, Sign In to add comment