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

九的余数

时间:2017-06-23 21:08:21      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:mod   限制   iostream   难度   lan   http   text   otto   arch   

九的余数

时间限制:3000 ms  |  内存限制:65535 KB
难度:3
描写叙述

如今给你一个自然数n。它的位数小于等于一百万,如今你要做的就是求出这个数整除九之后的余数。

输入
第一行有一个整数m(1<=m<=8),表示有m组測试数据;
随后m行每行有一个自然数n。
输出
输出n整除九之后的余数,每次输出占一行。
例子输入
3
4
5
465456541
例子输出
4
5
4
来源
[苗栋栋]原创
上传者

苗栋栋

回想一下大数相除~~

 
#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
char a[1000000];
int main()
{
	int T,yushu,len,i,s;
	cin>>T;
	while(T--)
	{
		yushu=0;
        cin>>a;
        len=strlen(a);
       for(i=0;i<len;i++)
	   {
		   s=yushu*10+(a[i]-'0');
		   yushu=s%9;
	   }
	   cout<<yushu<<endl;
	}
	return 0;
}        

九的余数

标签:mod   限制   iostream   难度   lan   http   text   otto   arch   

原文地址:http://www.cnblogs.com/jzssuanfa/p/7071458.html

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