I am trying to write a batch file so it executes a program I did with different arguments. One of those arguments is often the number PI.

How can I get the number Pi?

Thanks!

有帮助吗?

解决方案

I assume with "batch file" you mean a Windows batch file.

There is no pre-defined constant for PI, so you need to hardcode that into the batchfile:

set PI=3.14159
yourProgram.exe %PI%
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top