find
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. variable
  2. //begin{find_word}
  3. #include <string>
  4. int main()
  5. {
  6. // initialize a string to hold a word to search for 
  7. string search_word;
  8. cin >> search_word;
  9. // initialize a bool variable to false 
  10. bool found = false;
  11. string next_word;
  12. while ( cin >> next_word ) {
  13. if ( next_word == search_word )
  14. found = true;
  15. }
  16. //{ shorthand notation for: if ( found == true ) }
  17. if ( found )
  18. std::cout << "ok, we found the word" << std::endl;
  19. else 
  20. std::cout << "nope, the word was not present." << std::endl;
  21. return 0;
  22. }
  23. //end{find_word}