2 条题解

  • 0
    @ 2024-10-27 15:14:19

    #include<bits/stdc++.h> using namespace std; int y[0],c[0],s[0]; int main() { freopen("div.in","r",stdin); freopen("div.out","w",stdout); int a,b,i; scanf("%d%d",&a,&b); c[0]=a; s[0]=a/b; y[0]=a%b; printf("%d/%d=%d",a,b,s[0]); if(y[0]==0)return 0; printf("."); for(int i=1;i<=20;i++) { c[i]=y[i-1]*10; s[i]=c[i]/b; printf("%d",s[i]); y[i]=c[i]%b; if(y[i]==0)break; } return 0; }

    信息

    ID
    493
    时间
    1000ms
    内存
    256MiB
    难度
    8
    标签
    递交数
    143
    已通过
    26
    上传者