Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //ex5
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string name;
  9. cin >> name;
  10.  
  11. int hours;
  12. cin >> hours;
  13.  
  14. int projects;
  15. cin >> projects;
  16.  
  17. cout << "The architect" << " " << name<<" "<< "will need" << " " << hours << " " << "hours to complete" << " " << projects<<" "<< "project/s." << endl;
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement