美文网首页C++ 基础
定义常数的另一种方法 e.g. PI

定义常数的另一种方法 e.g. PI

作者: 费曼猫 | 来源:发表于2017-09-14 16:28 被阅读21次
    include <iostream>
    using namespace std;
    define PI 3.14159
    define NEWLINE '\n'
    
    int main ()
    {
      double r=5.0;               // radius
      double circle;
      circle = 2 * PI * r;
      cout << circle;
      cout << NEWLINE;
    }
    

    相关文章

      网友评论

        本文标题:定义常数的另一种方法 e.g. PI

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