Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include <map>
  5. using namespace std;
  6.  
  7.  
  8. int main() {
  9.     string input;
  10.     getline(cin, input);
  11.     for (int i = 0; i != input.length(); ++i) {
  12.         while (input[i] != '-') {
  13.             ++i;
  14.         }
  15.         if (input[i + 1] = 'c') {
  16.             ///
  17.         } else if (input[i + 1] = 'l') {
  18.             ///
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement