需求:
输入一连串数字,数字之间逗号隔开,把数字存到数组或者向量里。
代码:
#include <iostream>
#include <string>
#include <vector>
#include "stdio.h"
using namespace std;
int main ()
{
string s;
while(cin>>s){
vector<int>nums;
char *str = (char *)s.c_str();