#include
#include
#include
using namespace std;
#define pi 3.1415926;
//const double pi=3.1415926;
int main(){
// printf("%f",(atan2(-1,1)*180/pi));
cout<< atan2(-1,1)*180/pi;// <
程序如上,上述情况下正常输出,但稍作修改后出现如下问题。
加入<
试图在<
试图用printf输出,发现不加n时都输出不了。
换用const常量时一切正常
有点弄不明白宏不是直接替换吗,为什么会出问题?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
多了个;分号