📜  用C ++输入

📅  最后修改于: 2021-05-31 19:10:32             🧑  作者: Mango

C++中的cin对象用于接受来自标准输入设备(例如键盘)的输入。它是istream类的实例。它与标准C输入流stdin相关联。提取运算符(>>)与对象cin一起用于读取输入。提取运算符从使用键盘输入的对象cin中提取数据。

程序1:

下面是实现cin对象以从用户获取输入的C++程序:

C++
// C++ program to demonstrate the
// cin object
#include 
using namespace std;
  
// Driver Code
int main()
{
    int i;
  
    // Take input using cin
    cin >> i;
  
    // Print output
    cout << i;
  
    return 0;
}


C++
// C++ program to demonstrate the taking
// multiple inputs from the user
#include 
using namespace std;
  
// Driver Code
int main()
{
    string name;
    int age;
  
    // Take multiple input using cin
    cin >> name >> age;
  
    // Print output
    cout << "Name : " << name << endl;
    cout << "Age : " << age << endl;
  
    return 0;
}


输入:

输出:

注意:也可以使用带有cin的提取运算符(>>)进行多个输入。

程式2:

下面是C++程序,用于实现用户的多个输入:

C++

// C++ program to demonstrate the taking
// multiple inputs from the user
#include 
using namespace std;
  
// Driver Code
int main()
{
    string name;
    int age;
  
    // Take multiple input using cin
    cin >> name >> age;
  
    // Print output
    cout << "Name : " << name << endl;
    cout << "Age : " << age << endl;
  
    return 0;
}

输入:

输出:

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”