qberik

Untitled

May 26th, 2022
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <string>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main(){
  7.  
  8. string input = "asdasd123";
  9.  
  10. int number;
  11.  
  12. try{
  13.  
  14. number = stoi( input );
  15.  
  16. }catch(invalid_argument e){
  17.  
  18. cout << "Что-то не так" << endl;
  19. number = -1;
  20.  
  21. }
  22.  
  23. cout << "Номер " << number << endl;
  24.  
  25.  
  26. return 0;
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment