如何使用 c++ 从命令提示符中提取信息?

发布于 2024-10-16 06:23:32 字数 162 浏览 2 评论 0原文

我想用 C++ 编写一个程序,告诉你需要经过多少天、几年和几个月才能到达某个日期。我还想包括需要经过多少小时和分钟。 所以我的问题是,我不知道如何从 cmd 上的命令“time”获取当前日期和时间到变量,或者无论如何获取当前日期和时间,以便它可以工作。 我接受已经完成的程序,这样我就可以看到它并结束我的疑虑。

i wanna make a program on c++ that tells you how many days, years and months need to pass to get to a certain date. Also i wanna include how many hours and minutes need to pass.
So my problem is that i do not know how to get the current date and time to a variable from the command "time" on cmd or anyway to get the current date date and time so it will work.
I accespt the program done already so i can see it and end my doubts.

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

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

发布评论

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

评论(3

滥情稳全场 2024-10-23 06:23:32
  1. 使用 getline() 获取输入
  2. 将字符串解析为日期格式
  3. 使用一些时间/数据库来查找差异
  4. 输出到控制台
  1. Get input with getline()
  2. Parse string to date format
  3. Use some time/data library to find the difference
  4. Output to console
西瑶 2024-10-23 06:23:32

虽然这几乎肯定是作业,但您可能会发现这篇文章很有用(指向 Boost 库):C++ DateTime 类

While this is almost certainly homework, you might find this post useful (points to the Boost library): C++ DateTime class

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