Advertisement
NewbProgrammer

Original

Dec 17th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. Division CreateCorporateFile(Division)
  2. {
  3.      Division div = new Division;
  4.          
  5.      cout<<"Enter the name of the division: ";
  6.      cin>>div.divName;
  7.      cout<<"Enter in the sales for quarter "<<(div.sales + 1)<<": ";
  8.      cin>>div.sales;
  9.      
  10.      return(div);
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement