04 2022 档案

摘要://该程序完成'动态内存分配' #include<stdio.h>#include<stdlib.h> typedef struct node{ int data; struct node *next;}linklist; //主菜单 int menu(){ printf("\n********** 阅读全文
posted @ 2022-04-28 18:27 CC9898 阅读(110) 评论(0) 推荐(0)
摘要://编写一个函数print,输出学生的信息,该数组有5个学生的记录,包括://num,sname,score[3],用主函数输入这些记录,用print函数输出这些记录。 #include<stdio.h>#define N 5 //预定义,N代表5个学生 struct student{ int nu 阅读全文
posted @ 2022-04-21 17:34 CC9898 阅读(359) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>分页-陈敏芳</title> <style type="text/css"> ul.pagination{ display: inline-block; padding: 0; mar 阅读全文
posted @ 2022-04-15 23:40 CC9898 阅读(93) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>图片浮动-陈敏芳</title> <style type="text/css"> img{ float: right; } .clearfix:after { content: "." 阅读全文
posted @ 2022-04-15 23:39 CC9898 阅读(110) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>固定定位-陈敏芳</title> <style type="text/css"> *{ margin: 0;/*外边距*/ padding: 0;/*内边距*/ } .wrap{ bo 阅读全文
posted @ 2022-04-15 23:38 CC9898 阅读(132) 评论(0) 推荐(0)
摘要:#include<stdio.h>#define N 5 struct student//数据类型 { int num;//学号 char sname[25];//姓名 char sex[4];//性别 int age;//年龄 }; struct student stu[N]={{1001,"钟丽 阅读全文
posted @ 2022-04-14 14:53 CC9898 阅读(1580) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>凤凰网</title> <style type="text/css"> * { font-family: SimSun, Arial; padding: 0; margin: 0; b 阅读全文
posted @ 2022-04-13 22:54 CC9898 阅读(227) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>图文混排-陈敏芳</title> <style type="text/css"> * { padding: 0px; margin: 0px; } body{ font-size: 1 阅读全文
posted @ 2022-04-08 22:48 CC9898 阅读(146) 评论(0) 推荐(0)
摘要:题目: 某班级有4名这学生,每个学生有5门课程。编程实现以下3个要求: (1)求第一门课程的平均成绩; (2)找出有两门以上课程不及格的学生,输出他们的学号和全部课程成绩及平均分; (3)找出平均成绩在90分以上或全部课程成绩在85分以上的学生。 源代码: #include<stdio.h>#inc 阅读全文
posted @ 2022-04-07 15:39 CC9898 阅读(689) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>春雨-陈敏芳</title> <style type="text/css"> .box{ border: 3px #0099FF solid;/*设置边框粗细,颜色和类型*/ padd 阅读全文
posted @ 2022-04-01 22:27 CC9898 阅读(168) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>阴影-陈敏芳</title> <style type="text/css"> body{ font-size: 20px; } h1{ font-family: 微软雅黑; color 阅读全文
posted @ 2022-04-01 22:26 CC9898 阅读(191) 评论(0) 推荐(0)
摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>溢出-陈敏芳</title> <style type="text/css"> .box{ width: 310px; margin: 10px; font-family: 楷体; } 阅读全文
posted @ 2022-04-01 22:24 CC9898 阅读(182) 评论(0) 推荐(0)