1.查询 1990 年出生的学生名单 SELECT *FROM student WHERE year(sage) =1990; ...
分类:
其他好文 时间:
2020-01-16 01:03:41
阅读次数:
114
首先定义一个学生成绩类 public class StudentResult { public int Id { get; set; } public string No { get; set; } public string Name { get; set; } public int Num { ...
分类:
其他好文 时间:
2020-01-15 19:48:05
阅读次数:
78
上代码: 1 //用结构和STL常用算法实现对学生成绩的排序和查找。 2 #include<iostream> 3 #include<vector> 4 #include<algorithm> 5 #include<cstring> 6 using namespace std; 7 8 struct ...
分类:
其他好文 时间:
2020-01-11 18:31:53
阅读次数:
101
一丶团队成员及任务分配 团队成员: 网络1811 简达亮 201821123019(组长) 网络1812 苏雨 201821123048(组员) 网络1811 罗赐 201821123022(组员) 任务分配: 二、项目git地址 https://gitee.com/luoci0213/Studen ...
分类:
其他好文 时间:
2020-01-08 21:12:02
阅读次数:
136
1 //#include "pch.h" 2 3 #include <stdio.h> 4 #include <iostream> 5 6 7 #include <string> 8 #include <cstring> 9 #define SizeMax 300 10 #define SizeMi ...
分类:
编程语言 时间:
2020-01-08 10:52:54
阅读次数:
89
分析文件’课程成绩.xlsx’,至少要完成内容: 1)每年不同班级平均成绩情况 2)不同年份总体平均成绩情况 3)不同性别学生成绩情况,并分别用合适的图表展示出三个内容的分析结果。 导入相应的库 from functools import reduce import xlrd from flask ...
分类:
其他好文 时间:
2019-12-21 20:47:29
阅读次数:
129
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(void) 5 { 6 int n; 7 double *p; 8 scanf("%d", &n); 9 10 p = (double *)calloc(n, sizeof(double) ...
分类:
其他好文 时间:
2019-12-20 16:43:54
阅读次数:
192
学生成绩管理系统 #include<stdio.h>#include<stdlib.h>//颜色#include<conio.h>//清屏#include<string.h>#define LEN sizeof(struct student)#define SDJ stu[s].ID,stu[s]. ...
分类:
编程语言 时间:
2019-12-18 22:05:52
阅读次数:
120
<table width="400px" border="1" cellpadding="1" cellspacing="1"> <caption>学生成绩表</caption> <tr><th>学号</th><th>期中</th><th>期末</th><th>总评</th></tr> <tr><t ...
分类:
Web程序 时间:
2019-12-18 19:03:01
阅读次数:
152