问题 1074: 数字整除

Posted roronoa_zoro

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问题 1074: 数字整除相关的知识,希望对你有一定的参考价值。

/********************************************************************
@file     Main.cpp
@date     2017-6-30 09:44:39
@author   Zoro_Tiger
@brief    问题 1074: 数字整除
          http://www.dotcpp.com/oj/problem1074.html
********************************************************************/
//!头文件
#include <cstdio>
#include <cmath>
#include <string>
#include <iostream>

//!程序入口
int main(int argc, const char* argv[])
{
    //!变量声明
    std::string input = "";

    //!读取输入并处理
    while (getline(std::cin, input) && input != "0")
    {
        int temp = 0;
        for (int i = 0; i < input.size(); ++i) //!很暴力的求是否能被某数整除
        {
            temp = (temp * 10 + (input.at(i) - 0)) % 17;
        }
        printf("%d\n", (temp == 0 ? 1 : 0));
    }
    
    //!返回系统
    return 0;
}

 

以上是关于问题 1074: 数字整除的主要内容,如果未能解决你的问题,请参考以下文章

PAT 1074. 宇宙无敌加法器

PAT 乙级 1074 宇宙无敌加法器 (20 分)

1074. 宇宙无敌加法器(20)

1074 宇宙无敌加法器 (20 分)

如何检查数字是不是可以被另一个Python整除

查找一个数字是不是可以在一个数字范围内整除