Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是我家庭作业的开始。只需要弄清楚这一点,这样我就可以让程序的其余部分继续进行。
我需要能够键入输入,例如:
3 5 1 2 3 4 5
用空格分隔每个数字,每个数字按输入的顺序排列在数组中。
array[0] = 3, array[1] = 5
这必须在 C 中,并在每个疯狂教授的控制台中输入。每个数字输入后不允许按回车键。必须按上图输入,然后按回车键。
谢谢你的帮助!
我不会为你做你的工作,而是查找从标准输入中读取字符串,然后如何将它们标记化(拆分)为可以存储在数组中的元素。