牛客网单行空格输入

/*  牛客网输入方式   */ 
#include
#include

using namespace std;

int main(){
	cout<<"读入未知长度的单行数作为数组"< array;   
	int number;
	 
	while(1){
	 	cin >> number;
	 	array.push_back(number);
	 	
	 	if(cin.get() == '\n')
	 		break;
	}
	
	cout<<"遍历数组"<

 

你可能感兴趣的:(剑指offer)