1 条题解

  • 0
    @ 2021-6-14 22:56:37

    C++ :

    #include<iostream>
    using namespace std;
    int hex1,oct1;
    float pi;
    char dp1,nl1;
    string str1,str2;
    int main()
    {
        oct1=63;
        hex1=255;
        str1='Welcome';
        dp1='"';
        str2='Great!';
        pi=3.1415926;
        cout<<oct1<<endl;
        cout<<hex1<<endl;
        cout<<"Welcome"<<endl;
        cout<<dp1<<endl;
        cout<<endl<<endl;
        cout<<"Great!"<<endl;
        cout<<pi*100<<endl;
        return 0;
    }
    
    
    //用define命令定义常量oct1,并设置为八进制数77
    //用const命令定义整型常量hex1,并设置为十六进制数FF
    //用const命令定义字符串常量str1,并设置为“Welcome”
    //用const命令定义字符常量dq1,并设置为一个双引号。(参考特殊字符)
    //用define命令定义字符常量nl1,并设置为一个回车符。(参考特殊字符)
    //用define命令定义字符串常量str2,并设置为“Great!”
    //用const命令定义常量pi,并设置为3.14159
    
    
    • 1

    信息

    ID
    76
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者