C语言之结构体

1、用数据结构定义学生信息,有学号,姓名,5门课程的成绩,编一程序,输入20个学生成绩,求出总分最高的学生姓名并输出结果。要求编写3个函数,它们的功能分别为:

1)输入函数,用于从键盘读入学号、姓名和5门课的成绩;

2)计算总分函数,以计算每位学生的总分;

3)输出函数,显示每位学生的学号、总分和分数。

说明:这三个函数的形式参数均为结构体指针和整型变量,函数的类型均为void.

#include<stdio.h>

struct stu

{

int b;

char a20;

float one;

float two;

float three;

float four;

float five;

};

int main()

{

struct stu s20;

float sum20;

for(int i=0;i<20;i++)

{

scanf("%d",&si.b);

scanf("%s",&si.a);

scanf("%f",&si.one);

scanf("%f",&si.two);

scanf("%f",&si.three);

scanf("%f",&si.four);

scanf("%f",&si.five);

sumi=si.one+si.two+si.three+si.four+si.five;

}

int max=sum0;

int n=0;

for(int j=1;j<20;j++)

{

if(sumj>max)

{

max=sumj;

n=j;

}

printf("%-20d %s %f %f %f %f %f\n",sj.b,sj.a,sj.one,sj.two,sj.three,sj.four,sj.five);

}

printf("总分最高的学生:%s 成绩为:%f",sn.a,sumn);

return 0;

}

2、编写一程序,运用插入结点的方法,将键盘输入的n个整数(输入0结束)插入到链表中,建立一个从小到大的有序链表。

#include <stdio.h>

#include <stdlib.h>

struct Node {

int data;

struct Node* next;

};

struct Node* createNode(int value);

void insertSorted(struct Node** head, int value);

void displayList(struct Node* head);

void freeList(struct Node* head);

int main() {

struct Node* head = NULL;

int input;

printf("请输入整数,以0结束输入:\n");

do {

scanf("%d", &input);

if (input != 0) {

insertSorted(&head, input);

}

} while (input != 0);

printf("有序链表的内容:\n");

displayList(head);

freeList(head);

return 0;

}

struct Node* createNode(int value) {

struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));

if (newNode == NULL) {

printf("内存分配失败\n");

exit(1);

}

newNode->data = value;

newNode->next = NULL;

return newNode;

}

void insertSorted(struct Node** head, int value) {

struct Node* newNode = createNode(value);

if (*head == NULL || value < (*head)->data) {

newNode->next = *head;

*head = newNode;

} else {

struct Node* current = *head;

while (current->next != NULL && current->next->data < value) {

current = current->next;

}

newNode->next = current->next;

current->next = newNode;

}

}

void displayList(struct Node* head) {

struct Node* current = head;

while (current != NULL) {

printf("%d ", current->data);

current = current->next;

}

printf("\n");

}

void freeList(struct Node* head) {

struct Node* current = head;

struct Node* next;

while (current != NULL) {

next = current->next;

free(current);

current = next;

}

}

相关推荐
令狐掌门3 分钟前
2026华为OD面试题020:日志文件异常检测
算法·leetcode·华为od
炸薯条!5 分钟前
从零开始学C++(4) --类和对象
开发语言·c++·算法
haluhalu.13 分钟前
prompts.chat:07-few-shot-prompting
人工智能·算法
Jerry22 分钟前
LeetCode 150. 逆波兰表达式求值
算法
浩瀚地学28 分钟前
【面试算法笔记】0106-数组-区间和
笔记·算法·面试
Jerry6 小时前
LeetCode 1047. 删除字符串中的所有相邻重复项
算法
可编程芯片开发8 小时前
基于霍尔传感器和PID控制器的有功功率检测控制系统simulink建模与仿真
算法
To_OC9 小时前
LC 17 电话号码的字母组合:我的回溯算法,就是从这道题开窍的
javascript·算法·leetcode
xingke11 小时前
C 语言多文件编程:(一)头文件、extern、编译链接
c语言·开发语言·多文件
战族狼魂11 小时前
GPT-5.6与Grok 4.5重磅发布
人工智能·算法·大模型·大语言模型