#include <iostream>
#include <vector>
#include <string>

int main() {
std::vector<int> data;
std::string s;
if (std::getline(std::cin, s)) {
const char *loc = s.data();
int res = 0;
data.push_back(atoi(loc));
loc = strstr(s.data(), " ");
while (loc != NULL) {
data.push_back(atoi(loc + 1));
loc = strstr(loc + 1, " ");
}
}
std::cout << "wangjing" << std::endl;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2022-12-23
  • 2021-07-18
  • 2021-09-28
相关资源
相似解决方案