gpt4 book ai didi

c - 程序是删除数字示例 :if my number is 1200 the output must be 12 its not working with 8000 最后一个中的零

转载 作者:行者123 更新时间:2023-11-30 21:22:45 25 4
gpt4 key购买 nike

我的程序是:

#include <stdio.h>

int main ()
{
int num, count = 0, i, x;

scanf ("%d", &num);

for (i = 1; i <= 10; i++)
{
if (num % 10 == 0)
{
num = num / 10;
count++;
}
x = 10 ^ count;

if (num % x == 0)
{
num = num / x;
}
}
printf ("%d", num);

return 0;
}

最佳答案

只要数字除以 10 时没有余数,最好除以 10。

本质上:

scanf("%u", &num);
while (0 == (num % 10)){
num/=10;
}
printf("%u\n", num);

还建议检查 scanf 的输出值 1,以便您知道您已转换了 1 个十进制无符号 (%u) 数字。当然,除非允许负输入,否则应将 num 声明为 unsigned int num。您不需要额外的变量等。^(按位异或运算符(不是幂运算符))的使用是无意义的。

关于c - 程序是删除数字示例 :if my number is 1200 the output must be 12 its not working with 8000 最后一个中的零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51453187/

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