首页 > 代码库 > 问题 1074: 数字整除
问题 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: 数字整除
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。