= 1-6ren">
gpt4 book ai didi

c - 如何扫描 C 中数字的前 2 位数字?

转载 作者:行者123 更新时间:2023-12-04 11:16:59 24 4
gpt4 key购买 nike

例如,输入为 2095,我希望输出为 20。谢谢。

最佳答案

你总是可以将 2 个字符扫描成一个 int

scanf("%2d", &num);

或者如果你已经有了号码

while (num >= 100) num /= 10;

这将为您提供数字形式的前 2 位数字。

关于c - 如何扫描 C 中数字的前 2 位数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9713060/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com