大数求模hdu1212

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1212

 

题目解析:大数运算用字符串处理

 

#include<cstdio>
#include<iostream>
using namespace std;
char str[1001];
int main(){
	int len,i,n,mod;
	while(cin>>str>>n){
		len=strlen(str);
		mod=0;
		for(i=0;i<len;i++){
			mod*=10;
			mod+=str[i]-'0';
			mod%=n;
		}
		cout<<mod<<endl;
	}
	return 0;
}

你可能感兴趣的:(大数求模hdu1212)