2016校園招聘筆試程式設計題 1

2021-07-05 08:56:39 字數 458 閱讀 8369

#include "stdafx.h"  //#include

#include

#include

using namespace std;

typedef struct studentscorestu;

//單科成績、總成績檢查

void check(stu stuary,char * s,int ilen)

else if(isum < 350)//當單科成績滿足要求,總分大於310而小於350時,自費錄取

else//當單科成績滿足,總分大於350時公費錄取

}  }

//程式入口

int _tmain(int argc, _tchar* argv)

char *s[3]=;

check(score,s,n+1);

//cout<<"*s="<<*sreturn 0;

}

奇虎360 2015校園招聘筆試程式設計題

題目一 寫乙個函式,根據兩檔案的絕對路徑算出相對路徑。那麼b相對於a的相對路徑是 1 2 test.c include include int isgoodpath char path the relative path of b void parserelativepath char patha,...

筆試程式設計題1

1,不用庫函式實現strcpy,並說明strcpy返回char 的原因 為了實現鏈式表示式。例如 int length strlen strcpy strdest,hello world 將字串s1複製到s2 char mystrcpy char s1,const char s2 2,實現strcm...

2016 CVTE 筆試程式設計題

給定乙個有序陣列和乙個目標值,找出該目標值在這個陣列裡面的區域,若目標不存在於陣列中,返回 1,1 例如 有序陣列 1 2 3 4 5 6 6 6 6 給出目標值6,應當返回 5,8 要求 時間複雜度o llogn 看到有序陣列和時間複雜度o logn 時,第一反應就是二分查詢。1.先二分查詢出第乙...