[c++]常用关键字cin,cout,endl的使用

2023-12-18 18:29:29
#include <iostream>
using namespace std;






int main() 
{
    int a;
    char b;

    std:: cout << "please input :"<<std:: endl;
    cin >> a >> b;

    std::cout << "the out put:" << std::endl;
    cout << a << ' ' << b << '\n' << endl;

    return 0;
}

?黄色框:先输入10,[回车]/空格输入字符

?如果不用"using namespace std;",则需要在cout和endl 前面加上"std::":

#include <iostream>
//using namespace std;






int main() 
{
    int a;
    char b;

    std:: cout << "please input :"<<std:: endl;
    std:: cin >> a >> b;

    std::cout << "the out put:" << std::endl;
    std::cout << a << ' ' << b << '\n'<<std:: endl; 

    return 0;
}

endl为换行的作用,

文章来源:https://blog.csdn.net/weixin_46855342/article/details/135061065
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。