美文网首页模板
C++输入方式input

C++输入方式input

作者: smatrcHendsa | 来源:发表于2019-03-23 07:31 被阅读0次

对坑爹的输入的两种输入方式

#include <iostream>
#include <map>
#include <sstream>
using namespace std;


int main() {
    string str;
    while (getline(cin, str)) {
        int s;
        stringstream stm(str);
        while (stm >> s) {
            
        }
    }
    return 0;
}
int main() {
    char str[500];
    while (gets(str)) {
        cout << str;
    }
    return 0;
}

相关文章

网友评论

    本文标题:C++输入方式input

    本文链接:https://www.haomeiwen.com/subject/wksqvqtx.html