c_cpp 标准的io C ++

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 标准的io C ++相关的知识,希望对你有一定的参考价值。

# standard int

#include <iostream>
#include <string>
#include <stringstream>

using namespace std;

int main() {
    // cint will only read in one space-delimited input at a time
    int i, j, k;
    cin >> i >> j >> k;
    
    // getline will read the entire line until a newline character (or a custom specified delimiter)
    string name;
    getline(cin, name);
    
    // stringstream will convert strings to other data types
    int height;
    string length;
    getline(cin, input);
    stringstream(input) >> height

   
    return 0;
}

以上是关于c_cpp 标准的io C ++的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp C ++标准模板库

c_cpp 标准的内存释放方法

c_cpp 标准输出的进度条

c_cpp C ++标准库中的堆栈和队列的简单示例

c_cpp C ++ 11标准新特性:Defaulted和Deleted函数

c_cpp 归并排序的非递归实现,慢于标准库