首页 > 代码库 > 2013年北京师范大学新生程序设计竞赛网络赛--D. Number theory(模拟取余)
2013年北京师范大学新生程序设计竞赛网络赛--D. Number theory(模拟取余)
D. Number theory
1000ms
1000ms
65536KB
64-bit integer IO format: %lld Java class name: Main
Font Size:
数学不仅是简单而且是美的。数学很有趣,但是数学中也有很多难题,比如哥德巴赫猜想、各种欧拉定理、拉格朗日中值定理、费马定理等。今天小若遇到了一道题目:给一个9进制数,求出这个数模8的余数。小若苦思冥想很久也没有想出结果,聪明的你快来帮助小若若吧!
Input
输入每行有一串数字(保证数字长度不超过107),有多组测试数据。以0结束输入。
Output
对应于每组输入,首先输出数据编号(如样例所示),输出答案即可。
Sample Input
188 3687 0
Sample Output
Case 1: 1 Case 2: 0
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; int main() { string str; int c=1; while(cin>>str&&str!="0") { int len=str.length(); int num=0; for(int i=0;i<len;i++) { num=(num*9+(str[i]-‘0‘))%8; } cout<<"Case "<<c++<<": "<<num<<endl; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。