在C中读取整数数组
我需要帮助从 C 中的 stdin 读取类似这样的内容: 它是由空格分隔的整数数组,如下所示 32 342 354 231 34.... 所以我需要将每个数字读入整数数组中,并且我有数字的数量。
希望有人能帮忙, 真挚地, 斯特凡·哈科
I need a help with reading from stdin in C something like this:
It is array of ints separated by space like this 32 342 354 231 34.... so I need to read every number into array of ints and I have the number of numbers.
Hope that someone can help,
Sincerely,
Stefan Hacko
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你知道你需要读取多少个整数吗?尝试 scanf 函数。
Do you know how many ints you need to read? Try the scanf function.