美文网首页FortranC++
😎C++--常量定义2

😎C++--常量定义2

作者: JiehongYOU | 来源:发表于2019-05-23 14:36 被阅读0次
    const 声明 常量
    #include <iostream>
    using namespace std;
    
    int main(void) {
        const int LENGTH = 20;
        const int WIDTH = 10;
    
        int area = WIDTH * LENGTH;
    
        cout << "Area is:" << area;
    
        system("pause");
        return 0;
    }
    
    结果
    result.png

    相关文章

      网友评论

        本文标题:😎C++--常量定义2

        本文链接:https://www.haomeiwen.com/subject/qgnvzqtx.html