Alx09

Untitled

Apr 9th, 2019
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8. string nume = "Daca e prea multe cuvinte se scurteaza";
  9. nume.erase(7,18);
  10. cout<< nume;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment