現(xiàn)在一般使用的都是易查分系統(tǒng)哦,將制作好的excel表格上傳至易查分,3分鐘即可搭建好一個查分網(wǎng)站
為猇亭等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及猇亭網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站設(shè)計、成都網(wǎng)站設(shè)計、猇亭網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
#include "conio.h"
struct student
{
char name [15];
int score;
};
int find (struct student s[]);void main()
{
int i=0;
struct student stu[5];
for(i=0;i5;i++)
{
printf("輸入第%d個學生的姓名:",i+1);
scanf("%s",stu[i].name);
printf("輸入第%d個學生的成績:",i+1);
scanf("%d",stu[i].score);
}
int nIndex=find(stu);
if(nIndex!=-1)
printf("找到該同學信息,該同學位于第%d個位置(數(shù)組下標)",nIndex);
getch();
}int find(struct student s[])
{
char name[15];
int i=0;
int nIndex=-1;
printf("輸入要查詢學生的姓名:");
scanf("%s",name);
for(i=0;i5;i++)
{
if(strcmp(s[i].name,name)==0)
{
nIndex=i;
break;
}
}
return nIndex;
}
寫了個創(chuàng)建和查找函數(shù):
#include?stdio.h
#include?string.h
#include?stdlib.h
typedef?struct?Information
{
char?no[20];
int?english;
int?math;
int?computer;
struct?Information?*next;
}INFORMATION,?*PINFORMATION;
PINFORMATION?head?=?NULL;
void?createLink()
{
int?n,?i;
PINFORMATION?p,?q;
printf?("請輸入?個學生的信息:");
scanf?("%d",?n);
head?=?(PINFORMATION)malloc(sizeof(INFORMATION));
head-next?=?NULL;
p?=?head;
for?(i?=?1;?i?=?n;?++i){
q?=?(PINFORMATION)malloc(sizeof(INFORMATION));
fflush(stdin);
printf?("請輸入第%d個學生的學號:",?i);
scanf?("%s",?q-no);
printf?("請輸入第%d個學生的英語成績:",?i);
scanf?("%d",?q-english);
printf?("請輸入第%d個學生的數(shù)學成績:",?i);
scanf?("%d",?q-math);
printf?("請輸入第%d個學生的計算機成績:",?i);
scanf?("%d",?q-computer);
q-next?=?NULL;
p-next?=?q;
p?=?p-next;
}
}
void?searchInformation()
{
char?no[20];
PINFORMATION?p?=?head-next;
int?flag?=?0;
printf?("請輸入要查找的學生學號:");
fflush(stdin);
scanf?("%s",?no);
while?(p?!=?NULL){
if?(strcmp(p-no,??no)==0){
flag?=?1;
break;
}
p?=?p-next;
}
if?(flag){
printf?("學號:%s\t英語成績:%d\t數(shù)學成績:%d\t計算機成績:%d\n",?p-no,?p-english,?p-math,?p-computer);
}
else?{
printf?("沒有找到學號為%s的學生記錄!\n",?no);
}
}
int?main()
{
createLink();
searchInformation();
return?0;
}