Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个批处理文件,以便它执行我使用不同参数执行的程序。这些论点之一通常是数字 PI。
我怎样才能得到数字 Pi?
谢谢!
我假设“批处理文件”是指 Windows 批处理文件。
PI 没有预定义的常量,因此您需要将其硬编码到批处理文件中:
set PI=3.14159 yourProgram.exe %PI%