与 Pascal 在同一行读取 STRING、INTEGER
我如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.抱歉,但我很确定没有办法。你必须分开阅读它们。
I am sorry, but I am pretty sure there is no way. You must read them separated.