与 Pascal 在同一行读取 STRING、INTEGER

发布于 2024-10-31 21:49:54 字数 72 浏览 1 评论 0原文

我如何在 pascal 中读取同一行中的字符串和整数,例如 C 的 scanf("%s %d", str, &n);版本?

How do i read in pascal a string and an integer in the same line like the C's scanf("%s %d", str, &n); version?

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

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

发布评论

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

评论(2

横笛休吹塞上声 2024-11-07 21:49:54

Pascal 没有相当于 C 的 ...scanf() 函数。您必须找到第三方实现、编写自己的实现,或者直接解析字符串。

Pascal does not have an equivilent of C's ...scanf() functions. You will have to either find a third-party implementation, write your own implementation, or just parse the string directly.

画尸师 2024-11-07 21:49:54

抱歉,但我很确定没有办法。你必须分开阅读它们。

I am sorry, but I am pretty sure there is no way. You must read them separated.

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