FortranC++

😎C++ -- 常量定义

2019-05-23  本文已影响0人  JiehongYOU

1:#define 定义常量

#include <iostream>

using namespace std;

#define LENGTH 10
#define WIDTH 5
#define NEWLINE '\n'

int main(void) {
    int area;

    area = LENGTH * WIDTH;
    cout << area;
    cout << NEWLINE;

    system("pause");
    return 0;

}
结果:
result.png
上一篇下一篇

猜你喜欢

热点阅读