C++输入输出(cin和cout)-创新互联
在C语言中,我们通常会使用 scanf 和 printf 来对数据进行输入输出操作。在C++语言中,C语言的这一套输入输出库我们仍然能使用,但是 C++ 又增加了一套新的、更容易使用的输入输出库。
【例1】简单的输入输出代码示例:
#includeusing namespace std;int main(){int x;float y;cout<<"Please input an int number:"< >x;cout<<"The int number is x= "< >y;cout<<"The float number is y= "<
网页题目:C++输入输出(cin和cout)-创新互联
URL链接:http://ybzwz.com/article/deejge.html