输入一行数字换行结束

while(cin>>b)
    {
        if(cin.get() == '\n')break;
    }

image.png
用空格隔开,接受数字,以一个换行结束。