如何在批处理文件中使用 PI

发布于 2024-11-04 18:43:48 字数 89 浏览 0 评论 0原文

我正在尝试编写一个批处理文件,以便它执行我使用不同参数执行的程序。这些论据之一通常是 PI 数字。

我怎样才能得到数字Pi?

谢谢!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

强辩 2024-11-11 18:43:48

我假设“批处理文件”是指 Windows 批处理文件。

PI 没有预定义常量,因此您需要将其硬编码到批处理文件中:

set PI=3.14159
yourProgram.exe %PI%

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%
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文