题目链接

Problem Description
Now give you two integers n m, you just tell me the m-th number after radix point in 1/n,for example n=4,the first numble after point is 2,the second is 5,and all 0 followed
 
Input
Each line of input will contain a pair of integers for n and m(1<=n<=10^7,1<=m<=10^5)
 
Output
For each line of input, your program should print a numble on a line,according to the above rules
 
Sample Input
4 2
5 7
123 123
 
#include<Iostream>
using namespace std;
int main()
{ int n,m,i,s,a,t;
while(cin>>n>>m)
{
if(m==1)
cout<<0<<endl;
else
{s=10;
for(i=1;i<=m;i++)
{ t=s/n;
s=s%n*10; }
cout<<t<<endl;
} }
return 0; }

Sample Output
5
0
8

最新文章

  1. jQuery jQuery对象与dom对象的转换
  2. Today I learnt
  3. [No000046]为什么跳槽加薪会比内部调薪要高?
  4. Elasticsearch: Indexing SQL databases. The easy way
  5. HDU 5013 City Tour
  6. 华为Java笔试题
  7. Theano+Keras+CUDA7.5+VS2013+Windows10x64配置
  8. QoS令牌桶工作原理
  9. UIApplicationDelegate 协议 浅析
  10. Centos 6启动流程详解
  11. STM32F1固件库文件讲解与基于固件库新建MDK工程模板
  12. 杨其菊201771010134《面向对象程序设计(java)》第一周学习总结
  13. gleez安装报错
  14. 51Nod 1009:1009 数字1的数量 (思维)
  15. NDKr10的各种BUG
  16. 图:无向图(Graph)基本方法及Dijkstra算法的实现 [Python]
  17. 怎么查看在centos中创建的用户组
  18. CSS进阶知识
  19. 关于git rebase的相关讲解
  20. 【P2944】地震损失(最大流,洛谷)

热门文章

  1. Java生成目录
  2. [linux]chown和chmod命令
  3. Cocos2dx 3.x创建Layer的步骤
  4. 手机装linux系统
  5. 深入理解Tomcat系列之一:系统架构(转)
  6. javamail发送邮件的简单实例(转)
  7. java -D參数简化增加多个jar【简化设置classpath】
  8. Android 启动过程的底层实现
  9. java与c/c++进行socket通信
  10. ORACLE 实验二