//
// Created by 86199 on 2024/10/4.
//#define 名称 常量值 symbolic constants 要写在头部
#include <float.h>
#include<iostream>
#include "windows.h"
#define FAT_BMI 28
#define J2C_RATE 4
using namespace std;
int main(){
SetConsoleOutputCP( CP_UTF8);
//设置控制台编码输出,避免输出中文乱码
//使用符号常量的语句,是正常的代码了,要写在main函数中
cout << FAT_BMI << endl;
cout << "焦耳转卡路里需要除以" << J2C_RATE << endl;
return 0;
}
方式一:引入WIndows.h库
方式二:system("chcp 65001")
include "windows.h"
SetConsoleOutputCP( CP_UTF8);
符号常量要求在头部先定义后使用,使用语法为
#define 标识符(变量名) 常量