#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int a,b,c;
while(scanf("%d/%d %d",&a,&b,&c) != EOF)
{
printf("%d.",a/b);
a%=b;
while(c--)
{
a*=10;
int q=a/b;
printf("%d",q);
a%=b;
if(a==0)
{
break;
}
}
printf("\n");
}
return 0;
}
相关文章
- 04-12求 a 的 b 次方对 p 取模的值
- 04-12python – 乘以两个词典(价格,股票)的值,然后求和
- 04-12104. 货仓选址——绝对值不等式的运用,中位数巧用
- 04-12react 不能往组件中传入属性的值为 undefined
- 04-12开箱即用的高颜值后台系统
- 04-12python-Pandas GroupBy-仅显示具有多个唯一特征值的组
- 04-12JS_js sort方法根据数组中对象的某一个属性值进行排序
- 04-12所提供的AutoMapper值类型错误
- 04-12有关httpContext.Current.Session[值] 取值的问题
- 04-12vue给methods中的方法传入当前点击行的值