欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2018年小米校招笔试题

程序员文章站 2022-04-02 18:29:03
...

我们设计了整数三角形,每一行都比上一行多出一个数,而每个数字都等于它上方与左上方两个数字之和,给出一个数字,求最先出现在哪一行

#include<iostream>
#include<stdlib.h>
#include<string.h>
#define maxn 30
int a[maxn][maxn];

int main()
{
    using namespace std;
    int z=0, x, y,tot=1;
    int n;
    memset(a, 0, sizeof(a));
    for (int i = 1; i < maxn; ++i)
    {
        a[i][1] = tot;
    }
    for (int x = 2; x < maxn; ++x)
    {
        for (int y = 2; y < maxn; ++y)
            a[x][y] = a[x - 1][y] + a[x - 1][y - 1];
    }
    cin >> n;
    for (int c = 0; c < maxn; ++c)
    {
        for (int b = 0; b < maxn; ++b)
        {
            if (a[c][b] == n)
            {
                z = c;

                break;
            }
            else continue;
        }
        if (z)
        {
            cout << z; break;
        }
        else continue;
    }

    system("pause");
    return 0;
}