mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
7 lines
172 B (Stored with Git LFS)
Plaintext
7 lines
172 B (Stored with Git LFS)
Plaintext
5
|
|
#define PI 3.14159
|
|
#define E 2.71828
|
|
std::cout << PI * r * r << std::endl;
|
|
std::cout << log10(x) / log10(E) << std::endl;
|
|
std::cout << "E^(PI * i) + 1 = 0" << std::endl;
|