23 改變學生結構體中的資料

2021-07-03 10:20:45 字數 700 閱讀 4411

程式通過定義學生結構體變數,儲存了學生的學號、姓名和3門課的成績,函式fun的功能是對形參b所指結構體變數中的資料進行修改,最後在主函式中輸出修改後的資料。

#define _crt_secure_no_warnings

#include#includestruct student

;void fun(struct student *b)

int main()

; int i;

printf("\n\nthe original data:\n");

printf("\nno:%ld name: %s\n score: ", t.sno, t.name);

for (i = 0;i < 3;i++)

printf("%6.2f", t.score[i]);

printf("\n");

fun(&t);

printf("\nthe data after modified :\n");

printf("\nno:%ld name:%s \nscore: ", t.sno, t.name);

for (i = 0;i < 3;i++)

printf("%6.2f", t.score[i]);

printf("\n");

getchar();

return 0;

}

改變結構體的值

下面看三個程式 通過直接改變給指標變數賦初始值 include include typedef struct node student student create student stu int main student void create student stu int main 最後乙個是...

103 在學生結構體資料中尋找最低分數

已知學生的記錄由學號和學習成績構成,n名學生的資料已存入a結構體陣列中。函式fun的功能是 找出最低的學生記錄,通過形參返回主函式。規定只有乙個最低分數 define crt secure no warnings include include define n 10 typedef struct ...

C C 複習 學生資訊的輸出(結構體)

all right reserved.檔名稱 77.cpp 作 者 董凱琦 完成日期 2016年4月26日 版 本 號 v1.0 問題描述 編寫乙個函式print,列印乙個學生的成績陣列,該陣列中有5個學生的資料,每個學生的資料報括num 學號 name 姓名 score 3 3門課的成績 編寫乙個...