my codes:
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b; while(~scanf("%d%d",&a,&b)) { int afterdot_1=(a*10)/b;//计算a除b的第一位小数. printf("%d\n",afterdot_1); } return 0; }
原文地址:https://www.cnblogs.com/dragondragon/p/11367113.html
时间: 2024-11-05 19:32:06