c/c++ 创建元素个数为500的字符串数组 读入500个长度不超过40的字符串,再输出,大家都是怎么写的?
阿神
阿神 2017-04-17 13:10:39
0
1
748

c/c++ 创建元素个数为500的字符串数组 读了500个长度不超过40的字符串,再输出,大家都是怎么写的?(我知道这个问题很low)

阿神
阿神

闭关修行中......

모든 응답(1)
大家讲道理
#include <string>
#include <iostream>

using namespace std;

int main()
{
    string xs[500];
    for (auto& x : xs)
    {
        cin >> x;
        if (x.size() > 40) /*do something to crash*/;
    }
    for (const auto& x : xs)
    {
        cout << x << endl;
    }
}
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿