Algo lab/templates/inception

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
#include <iostream>

using namespace std;

const int MAX_N = 10010;

char names[MAX_N][20];

int main()
{
  char cmd[10];
  int n;

  cin >> n;
  
  int ncount = 0;
  for (int i = 0; i < n; i++) {
    cin >> cmd;

    if (cmd[0] == 'S') {
      cin >> names[ncount];
      
      // ...

      ncount++;
    } else if (cmd[0] == 'K') {

      // ...

    } else {

      // ...

    }
  }

  return 0;
}