fork download
  1. #include <algorithm>
  2. #include <string>
  3. #include <iostream>
  4.  
  5. int main() {
  6. std::string str("hello\nworld\n");
  7. std::cout << std::count(str.begin(), str.end(), '\n');
  8. }
  9.  
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
2