在这个基本的C++程序中,为什么不能打印出常量Pi?
#include <iostream> using namespace std; #define Pi 3.1415; int main() { cout << Pi << endl; return 0; } //main
c++
c++ ×1