文章

2

粉丝

121

获赞

4

访问

4.9k

头像
c++解法
P1851 北京师范大学2019年机试题
发布于2023年2月14日 19:08
阅读数 2.6k

 

#include <iostream>
#include<cstdio>
#include<string>
using namespace std;

int main()
{
    string A;
    int B;
    while(cin>>A>>B)
    {
        int Q,R;
        Q=(A[0]-'0')/B;
        if(A.length()==1||A.length()>1&&Q!=0)
            printf("%d",Q);
        R=(A[0]-'0')%B;
        for(int i=1;i<A.length();++i)
        {
            Q=(R*10+A[i]-'0')/B;
            if(Q!=0)
            printf("%d",Q);
            R=(R*10+A[i]-'0')%B;

        }
            printf(" %d\n",R);
  &nbs...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发