博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4207
阅读量:4927 次
发布时间:2019-06-11

本文共 933 字,大约阅读时间需要 3 分钟。

两个数都不会超过六位数 所以可以直接用64位int 不会溢出

只要注意输出格式 就好了

#include<iostream>

#include<string.h>
using namespace std;
__int64 a;
int max1;
int count(__int64 x)
{
    int t=0;
    while(x)
    {
        x/=10;
        t++;
    }
    return t;
}
void solve(int temp,int c,int p)
{
    __int64 v,i,ans;
   
    if(c==-1)
    {
        c=0;
        ans=temp;
        v=count(temp);
    }
    else
    {
        ans=temp*a;
        v=count(ans);
       
    }
    for(i=max1-v-c;i>0;i--)
        printf(" ");
    printf("%I64d",ans);
    while(p--)
        printf("0");
    printf("\n");
}

int main()

{
    int i,j,temp,c,u=1;
    __int64 ans,b,t;
    while(scanf("%I64d%I64d",&a,&b))
    {
        if(a==0&&b==0)
            break;
        printf("Problem %d\n",u++);
        t=b;c=0;
        max1=count(a*b);
        solve(a,-1,0);
        solve(b,-1,0);
        for(i=0;i<max1;i++)
            printf("-");
        printf("\n");
        int p=0;
        int m=0;
        while(t)
        {
            temp=t%10;
            if(temp)
            {   m++;
                solve(temp,c,p);
                p=0;
            }
            else
                p++;
            t/=10;
            c++;
        }
        if(m==1)
            continue;
        for(i=0;i<max1;i++)
            printf("-");
        printf("\n");
        printf("%I64d\n",a*b);
    }
    return 0;
}
       

   

 

转载于:https://www.cnblogs.com/assult/archive/2013/04/30/3051789.html

你可能感兴趣的文章
Python 递归
查看>>
MySQL常用函数
查看>>
[转帖]日本制裁韩国 全球闪存、内存芯片或许要重新涨价了
查看>>
关于SQL2005EXPRESS默认远程无法连接的解决
查看>>
React 16.x 新特性思维导图
查看>>
windows下开多个CMD窗口多个进程输出
查看>>
Ajax实现联想(建议)功能
查看>>
编译cef 2526
查看>>
JavaSE 学习笔记之Object对象(八)
查看>>
两天没有好好休息的感觉
查看>>
CSS H5布局
查看>>
iis7.5+win2008 出现 HTTP Error 503. The service is unavailable.
查看>>
python7
查看>>
python的and和or优先级
查看>>
if 调用common里的函数
查看>>
使用spring.net+nibernate时如何用aspnet_regiis加密数据库连接字符串
查看>>
UNION
查看>>
九.配置SMB共享(Samba共享)
查看>>
正则表达式
查看>>
Oracle RMAN Recover中使用BBED 跳过缺失的归档 继续 Recover 的测试
查看>>