L1-080 乘法口诀数列

#include<bits/stdc++.h>
using namespace std;

int main()
{
    int a[1006],n,sum=2,temp,b[10],i,z=2;
    cin>>a[0]>>a[1]>>n;
    while(n>=sum+1)
    {
        temp=a[z-1]*a[z-2];
        i=0;
        if(temp!=0)
        {
            while(temp)
            {
                b[i]=temp%10;
                i++;
                temp/=10;
            }
            while(--i>=0)
            {

                a[sum++]=b[i];
            }
        }
        else
        {
            a[sum++]=temp;
        }

        z++;
    }
    cout<<a[0];
    for(int j=1; j<n; j++)
        cout<<" "<<a[j];
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_53293179/article/details/121100381