Bootstrap

输入输出任意长度的数组

吐槽

昨晚看了一晚上博客,发现大部分博客都没有实现这样一个功能:键盘输入不定长度的数组,这样一个看似简单的事情实现起来真的不怎么容易(太菜了 ).甚至有些博客上的代码明明放在VS上根本运行不了,却放在博客上误人子弟,我…

思路

先输入字符串,再将字符串转化为整数,使用string的功能string.str()和头文件sstream中的stringstream类的功能完成转化,万事俱备只欠代码,来,上代码!

代码

#include<vector>
#include<string>
#include<iostream>
#include<stdio.h>
#include<cstdlib>
#include<sstream>
using namespace std;


int string_to_num(string a)
{
   
	stringstream ss(a);		//字符串转数组的标准代码,大家可以自行实验
	int num = 0;
	ss >> num;
	return num;
;