码迷,mamicode.com
首页 > 编程语言 > 详细

c++连续读取未知个数的数字

时间:2019-03-09 01:21:15      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   names   int   iostream   bre   while   count   space   ios   

#include <iostream>
using namespace std;

int main() {
    int n;
    int a[100];
    int i=0,count=0;
    while(cin>>n){
        a[i] = n;
        count++;
        i++;
        if (getchar() == \n)  break;
    }
    for(int j=0;j<count;j++){
        cout<<a[j]<<" ";
    }
}

重点是

if (getchar() == ‘\n‘)  break;

c++连续读取未知个数的数字

标签:style   names   int   iostream   bre   while   count   space   ios   

原文地址:https://www.cnblogs.com/whalelife/p/10498967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!