真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

c語言中成績查詢函數(shù) c語言看看你的成績代碼

如何用C語言做一個簡單的成績查詢系統(tǒng)

現(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ù)。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!

c語言中根據(jù)姓名查詢成績

#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;

}

C語言表若干學生成績函數(shù)

寫了個創(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;

}


當前文章:c語言中成績查詢函數(shù) c語言看看你的成績代碼
網(wǎng)頁鏈接:http://weahome.cn/article/doihjcd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部