码迷,mamicode.com
首页 > 其他好文 > 详细

问题 1074: 数字整除

时间:2017-06-30 11:11:36      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:问题   size   程序   ios   auth   lin   str   stream   etl   

/********************************************************************
@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: 数字整除

标签:问题   size   程序   ios   auth   lin   str   stream   etl   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/7097653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!