赞
踩
在 C++ 中,常用的输入输出语句主要是通过 iostream
库提供的 cin
和 cout
。这些语句用于从控制台获取输入和向控制台输出内容
cin
用于从控制台获取输入,通常与提供的变量结合使用。- int num;
- cin >> num; // 从控制台读取一个整数并存储在变量 num 中
cout:
cout
用于向控制台输出内容,可以输出变量的值、文本等。- int age = 25;
- cout << "My age is: " << age << endl; // 输出文本和变量的值,并换行
endl:
endl
用于在输出流中插入换行符,并刷新输出缓冲区。cout << "Hello, World!" << endl; // 输出文本并换行
- #include <iostream>
- using namespace std;
-
- int main() {
- int num;
- cout << "Enter a number: ";
- cin >> num;
- cout << "You entered: " << num << endl;
-
- return 0;
- }
在这个示例中,程序提示用户输入一个数字,然后将用户输入的数字输出到控制台上。
以上是 C++ 中基本的输入输出语句,通过这些语句可以实现控制台程序的输入和输出操作。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。