博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu Big Number
阅读量:5942 次
发布时间:2019-06-19

本文共 1278 字,大约阅读时间需要 4 分钟。

简单题

Problem Description

As we know, Big Number is always troublesome. But it's really important in our ACM. And today, your task is to write a program to calculate A mod B.
To make the problem easier, I promise that B will be smaller than 100000.
Is it too hard? No, I work it out in 10 minutes, and my program contains less than 25 lines.
Input
The input contains several test cases. Each test case consists of two positive integers A and B. The length of A will not exceed 1000, and B will be smaller than 100000. Process to the end of file.
Output
For each test case, you have to ouput the result of A mod B.
Sample Input
2 3
12 7
152455856554521 3250
Sample Output
2
5
1521
代码:

#include 
#include
#include
#include
#include
#include
#include
#include
using namespace std;int cmp(char c){ if(c=='0') return 0; else if(c=='1') return 1; else if(c=='2') return 2; else if(c=='3') return 3; else if(c=='4') return 4; else if(c=='5') return 5; else if(c=='6') return 6; else if(c=='7') return 7; else if(c=='8') return 8; else if(c=='9') return 9; }int main(){ string st; int n,sum; while(cin>>st>>n) { sum=0; for(int i=0;i

转载于:https://www.cnblogs.com/wangyumin/p/5323461.html

你可能感兴趣的文章
从拼多多优惠券事件看到的一些反思
查看>>
mac下完全卸载postgresql的方法
查看>>
20个纯css3写的logo
查看>>
四周第四次课 6.1 压缩打包介绍 6.2 gzip压缩工具 6.3 bzip2压缩工具 6.4 x
查看>>
RH124 章1 访问命令行 笔记
查看>>
交换机自动学习vlan
查看>>
三层交换配置与原理
查看>>
Nginx ssl、rewrite配置
查看>>
Android onPause()和onStop()区别
查看>>
HDU 6052 To my boyfriend(容斥+单调栈)
查看>>
EMC_AutoStart5.4安装配置之五
查看>>
提高项目开发效率之--会议室墙的进度表
查看>>
weave实现宿主机之间的容器互联
查看>>
洛谷——P2660 zzc 种田
查看>>
配置DAC
查看>>
Linux下安装rlwrap
查看>>
我的友情链接
查看>>
s3cmd安装与使用
查看>>
我的友情链接
查看>>
华为eNSP和SecureCRT连接乱码问题
查看>>