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.
我有一个由空格分隔的浮点数的文件,我想打开该文件并使用该文件中的数字进行数学运算(例如平均值),我将如何仅使用以下内容来执行此操作:fopen、fscanf、fclose、printf /scanf、指针、if/else/switch/loops?(没有数组)。
空格分隔文件中的值的数量可以是任意数量。
在没有任何数量知识的情况下,您将不得不阅读数字,直到遇到文件结尾,例如使用while构造。保持对所读数字的连续计数。
while
记住:
fscanf
EOF