2014年北理复试上机题

历年北京理工大学复试上机题题目汇总:

http://blog.csdn.net/u014552756/article/details/78505845


2014年北理复试上机题_第1张图片

#include 
using namespace std;
int main()
{
    int n=-1,a[1005],h=0,t=0;
    while(1)
    {
        cout<<"输入:";
        cin>>n;
        if(n==0)
            return 0;

        if(t-h==0)
        {
            a[t++]=n;
            cout<

2014年北理复试上机题_第2张图片

#include 
using namespace std;
int main()
{
    int n=-1,a[1005],h=0,t=0;
    while(1)
    {
        cout<<"输入:";
        cin>>n;
        if(n==0)
            return 0;

        if(t-h==0)
        {
            a[t++]=n;
            cout<

#include 
#include 
#include 
using namespace std;
int main()
{
    char a[105];
    while(1)
    {
        cout<<"输入:";
        gets(a);
        int coun=0,maxn=-1;
        for(int i=0; imaxn)
                    maxn=coun;
            }
            else if(a[i]==')')
                coun--;
        }
        cout<<"输出:"<

你可能感兴趣的:(北理考研初试复试,北京理工大学计算机考研)