首页  >  问答  >  正文

C++宏展开的输出问题?

#include <stdio.h>
#include <cmath>
#include <iostream>
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;// <<endl;
}

程序如上,上述情况下正常输出,但稍作修改后出现如下问题。

  1. 加入<<endl时程序报错。另起一个cout<<endl可以正常输出。

  2. 试图在<<endl加括号,还是报错。

  3. 试图用printf输出,发现不加n时都输出不了。

  4. 换用const常量时一切正常

有点弄不明白宏不是直接替换吗,为什么会出问题?

淡淡烟草味淡淡烟草味2736 天前771

全部回复(1)我来回复

  • 为情所困

    为情所困2017-05-16 13:32:56

    #define pi 3.1415926;

    多了个;分号

    回复
    0
  • 取消回复