在 C 中读取标准输入
当我尝试从 stdin
读取时遇到一些麻烦。我想要做的是从 stdin
读取未知行,直到引入字符 '.'
。你能帮我举一些例子吗?
I have some troubles when I am trying to read from stdin
. What I want to do is to read unknown lines from stdin
until character '.'
is introduced. Could you help me with some examples?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要读行...读字符。
Don't read lines ... read characters.
你可以使用这样的东西。有更有效的方法,但从这开始就很好了。
You could use something like this. There are more efficient ways but this would be fine to make a start.