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.
对 iOS 有很多了解并在 .net 方面有一些经验,这听起来很奇怪,我是 C 的新手。在某个地方我得到了这个目标,即在不使用printfand的情况下找到 n 个数字的平均值scanf。我不想要该程序的代码,但我正在寻找上述功能的替代品。
printf
scanf
这里需要代码printf/scanf吗?如果我的查询无效,也请告诉我。
printf/scanf
不,这printf也不scanf是真正需要的。
显而易见的替代方法是使用类似getc或的内容读取输入,并使用类似的内容fgets将字符转换为数字strtol。
getc
fgets
strtol
在输出端,您或多或少会颠倒过来,将数字转换为字符(例如,itoa这很常见,但实际上并不标准),然后打印出结果字符串(例如,使用 fputs)。
itoa