zoukankan      html  css  js  c++  java
  • I00026 计算数根

    什么是数根,请阅读源程序中的注释。

    人们通常使用10进制,对于一个10进制整数,用除数10除(/)和取余数(%)运算是常用的运算。这两个运算分别是10进制右移一位运算和取个位数运算,程序中运用十分广泛。

    给出的源程序一次运行,可以对输入的多个整数计算其数根。

    这个程序中的循环控制也是一个要点。

    程序如下:

    /* I00026 计算数根
     *
     * 一个数的数根是该数的各个位数字之和。
     * 如果得到的和是一位数,那么这个和就是数根;
     * 如果和是多位数,那么再次计算这个多位数的各个位数字之和;
     * 如此反复,直到计算得到的是一位数为止。
     *
     */
    
    #include <stdio.h>
    
    int main(void)
    {
        int val, result, temp;
    
        printf("Please enter a number:
    ");
    
        while(scanf("%d", &val) != EOF) {
            while(val) {
                result = 0;
                temp = val;
    
                while(temp) {
                    result += temp % 10;
                    temp /= 10;
                }
    
                if(result < 10)
                    break;
    
                val = result;
            }
    
            printf("Digital root is %d.
    ", result);
        }
    
        return 0;
    }

    程序运行实例如下:

    Please enter a number:
    123
    Digital root is 6.
    3890
    Digital root is 2.
    12345
    Digital root is 6.


  • 相关阅读:
    Leetcode53_Spiral_Matrix
    leetcode 分类
    bash 脚本
    关闭占用端口
    blue bossa
    判断对称二叉树
    This server is in the failed servers list: localhost/127.0.0.1:16000 启动hbase api调用错误
    在cikuapi.com上抓取相关词
    那些天使用AWS填过的坑和注意事项
    一百个人的十年-读后感
  • 原文地址:https://www.cnblogs.com/tigerisland/p/7564759.html
Copyright © 2011-2022 走看看